tests: pass "-nosyslog"

We want to see panics and warnings on the console
This commit is contained in:
Jakob Unterwurzacher 2016-10-08 19:36:26 +02:00
parent 8c89e2da0c
commit dde4a66454

View File

@ -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)