diff options
author | Jakob Unterwurzacher | 2016-10-08 19:36:26 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-08 19:36:26 +0200 |
commit | dde4a66454107709a7309ca5047ceb0ecf3c0b9f (patch) | |
tree | f2bcfb1c7d596cf30144d96cd6f970ffd6347c1a /tests | |
parent | 8c89e2da0ca3a2c901bfe067904b623a4da6f6a7 (diff) |
tests: pass "-nosyslog"
We want to see panics and warnings on the console
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 479da69..aec1f7c 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -121,7 +121,7 @@ func InitFS(t *testing.T, extraArgs ...string) string { func Mount(c string, p string, showOutput bool, extraArgs ...string) error { var args []string args = append(args, extraArgs...) - args = append(args, "-q", "-wpanic") + args = append(args, "-q", "-wpanic", "-nosyslog") //args = append(args, "-fusedebug") //args = append(args, "-d") args = append(args, c) |