diff options
author | Jakob Unterwurzacher | 2016-11-10 23:47:04 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-11-10 23:47:04 +0100 |
commit | c2629bd9b5b814cb7abaf6ddc42bd9f1f306b30b (patch) | |
tree | 565770b8f6a54945f0c8162290512c04e5bf7300 /tests/test_helpers/helpers.go | |
parent | c03fc46a5150715bf6aee20ce4b89d9704141220 (diff) |
tests: allow overriding hardcoded arguments in Mount helper
Diffstat (limited to 'tests/test_helpers/helpers.go')
-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) |