diff options
author | Jakob Unterwurzacher | 2017-05-01 23:50:49 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-05-01 23:50:49 +0200 |
commit | daada9d7c6207328ad49a4d96050eb08e1a003a1 (patch) | |
tree | 4b34a37f8a731bc63150ba8221cfab1428dd4c5b /tests/stress_tests | |
parent | fb3cc6ea407b83e4e1acf4e1a80e3b7d09c5b1db (diff) |
tests: support encfs in the fsstress script
May be helpful for https://github.com/vgough/encfs/issues/214 .
Diffstat (limited to 'tests/stress_tests')
l--------- | tests/stress_tests/fsstress-encfs.bash | 1 | ||||
-rwxr-xr-x | tests/stress_tests/fsstress-gocryptfs.bash | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/stress_tests/fsstress-encfs.bash b/tests/stress_tests/fsstress-encfs.bash new file mode 120000 index 0000000..139d4ec --- /dev/null +++ b/tests/stress_tests/fsstress-encfs.bash @@ -0,0 +1 @@ +fsstress-gocryptfs.bash
\ No newline at end of file diff --git a/tests/stress_tests/fsstress-gocryptfs.bash b/tests/stress_tests/fsstress-gocryptfs.bash index dd7f1e7..caa73c6 100755 --- a/tests/stress_tests/fsstress-gocryptfs.bash +++ b/tests/stress_tests/fsstress-gocryptfs.bash @@ -56,6 +56,9 @@ elif [ $MYNAME = fsstress-gocryptfs.bash ]; then ./build.bash $GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 $DIR $GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog $DIR $MNT +elif [ $MYNAME = fsstress-encfs.bash ]; then + # You probably want do adjust this path to your system + /home/jakob.donotbackup/encfs/build/encfs --extpass "echo test" --standard $DIR $MNT else echo Unknown mode: $MYNAME exit 1 |