diff options
| author | Jakob Unterwurzacher | 2016-06-19 20:01:29 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2016-06-19 20:04:09 +0200 | 
| commit | 930e597f5ae83ea5940b7196e45404daa14bf647 (patch) | |
| tree | a93598080c61cea71c620d4538bb10a488133a57 /tests/test_helpers | |
| parent | f0b4d2354ddd481eed6c6b26046fe6b4e04e5d7e (diff) | |
tests: expect mount failure for v0.6 and older example filesystems
Diffstat (limited to 'tests/test_helpers')
| -rw-r--r-- | tests/test_helpers/helpers.go | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index 04686c2..a3258fb 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -109,11 +109,8 @@ func Mount(c string, p string, extraArgs ...string) error {  	cmd := exec.Command(GocryptfsBinary, args...)  	cmd.Stderr = os.Stderr -	if testing.Verbose() { -		// Don't show the "deprecated filesystem" warnings by default. These -		// are not silenced by "-q". -		cmd.Stdout = os.Stdout -	} +	cmd.Stdout = os.Stdout +  	return cmd.Run()  }  | 
