diff options
author | Jakob Unterwurzacher | 2015-12-08 16:13:29 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-12-08 16:17:04 +0100 |
commit | c6dacd6f913b4c6eb7a8917af49190dce32db108 (patch) | |
tree | c0fd9a08f42c37bd977b95d2bb0a7c96226045c1 /integration_tests | |
parent | ff8c81f95b311eb1cd9c822202519f1a90a8cdd4 (diff) |
Add EME filename encryption & enable it by default
Diffstat (limited to 'integration_tests')
-rw-r--r-- | integration_tests/example_filesystems_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration_tests/example_filesystems_test.go b/integration_tests/example_filesystems_test.go index 8081feb..a04e67e 100644 --- a/integration_tests/example_filesystems_test.go +++ b/integration_tests/example_filesystems_test.go @@ -57,7 +57,7 @@ func TestExampleFsV04(t *testing.T) { checkExampleContent(t, pDir) unmount(pDir) mount(cDir, pDir, "-masterkey", "74676e34-0b47c145-00dac61a-17a92316-"+ - "bb57044c-e205b71f-65f4fdca-7cabd4b3", "-diriv=false") + "bb57044c-e205b71f-65f4fdca-7cabd4b3", "-diriv=false", "-emenames=false") checkExampleContent(t, pDir) unmount(pDir) err = os.Remove(pDir) @@ -79,7 +79,7 @@ func TestExampleFsV05(t *testing.T) { checkExampleContent(t, pDir) unmount(pDir) mount(cDir, pDir, "-masterkey", "199eae55-36bff4af-83b9a3a2-4fa16f65-"+ - "1549ccdb-2d08d1f0-b1b26965-1b61f896") + "1549ccdb-2d08d1f0-b1b26965-1b61f896", "-emenames=false") checkExampleContent(t, pDir) unmount(pDir) err = os.Remove(pDir) |