diff options
author | Jakob Unterwurzacher | 2018-02-06 23:01:56 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-02-06 23:03:07 +0100 |
commit | a3694e0c073b686b33c7ba34508c6e18a5508dd5 (patch) | |
tree | 9a25ff01001315798d9b9055d314d971e79e1d06 | |
parent | a624aab8a17834d492184a2d26db91ec754ff990 (diff) |
benchmark.bash: print tested version
-rwxr-xr-x | benchmark.bash | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/benchmark.bash b/benchmark.bash index ec969df..1501adc 100755 --- a/benchmark.bash +++ b/benchmark.bash @@ -66,10 +66,12 @@ if [[ $OPT_ENCFS -eq 1 ]]; then echo "The option $OPT_OPENSSL only works with gocryptfs" exit 1 fi - echo "Testing EncFS at $CRYPT" + echo -n "Testing EncFS at $CRYPT: " + encfs --version /home/jakob.donotbackup/encfs/build/encfs --extpass="echo test" --standard $CRYPT $MNT > /dev/null else - echo "Testing gocryptfs at $CRYPT" + echo -n "Testing gocryptfs at $CRYPT: " + gocryptfs -version gocryptfs -q -init -extpass="echo test" -scryptn=10 $CRYPT gocryptfs -q -extpass="echo test" $OPT_OPENSSL $CRYPT $MNT fi |