diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_helpers/helpers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index 1bbfdf3..90b00b6 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -124,8 +124,8 @@ func InitFS(t *testing.T, extraArgs ...string) string { // Creates "p" if it does not exist. func Mount(c string, p string, showOutput bool, extraArgs ...string) error { var args []string - args = append(args, extraArgs...) args = append(args, "-q", "-wpanic", "-nosyslog") + args = append(args, extraArgs...) //args = append(args, "-fusedebug") //args = append(args, "-d") args = append(args, c) |