summaryrefslogtreecommitdiff
path: root/benchmark.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-02-06 23:01:56 +0100
committerJakob Unterwurzacher2018-02-06 23:03:07 +0100
commita3694e0c073b686b33c7ba34508c6e18a5508dd5 (patch)
tree9a25ff01001315798d9b9055d314d971e79e1d06 /benchmark.bash
parenta624aab8a17834d492184a2d26db91ec754ff990 (diff)
benchmark.bash: print tested version
Diffstat (limited to 'benchmark.bash')
-rwxr-xr-xbenchmark.bash6
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