aboutsummaryrefslogtreecommitdiff
path: root/tests/test_helpers
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-10-08 19:36:26 +0200
committerJakob Unterwurzacher2016-10-08 19:36:26 +0200
commitdde4a66454107709a7309ca5047ceb0ecf3c0b9f (patch)
treef2bcfb1c7d596cf30144d96cd6f970ffd6347c1a /tests/test_helpers
parent8c89e2da0ca3a2c901bfe067904b623a4da6f6a7 (diff)
tests: pass "-nosyslog"
We want to see panics and warnings on the console
Diffstat (limited to 'tests/test_helpers')
-rw-r--r--tests/test_helpers/helpers.go2
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)