diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/cli/cli_test.go | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/cli/cli_test.go b/tests/cli/cli_test.go index 438ba16..58ffe44 100644 --- a/tests/cli/cli_test.go +++ b/tests/cli/cli_test.go @@ -285,6 +285,14 @@ func TestNonempty(t *testing.T) {  	test_helpers.UnmountPanic(mnt)  } +// -nofail should be ignored and the mount should succeed +func TestNofail(t *testing.T) { +	dir := test_helpers.InitFS(t) +	mnt := dir + ".mnt" +	test_helpers.MountOrFatal(t, dir, mnt, "-nofail", "-extpass=echo test") +	defer test_helpers.UnmountPanic(mnt) +} +  // Test "mountpoint shadows cipherdir" handling  func TestShadows(t *testing.T) {  	mnt := test_helpers.InitFS(t)  | 
