aboutsummaryrefslogtreecommitdiff
path: root/tests/stress_tests/fsstress-gocryptfs.bash
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stress_tests/fsstress-gocryptfs.bash')
-rwxr-xr-xtests/stress_tests/fsstress-gocryptfs.bash28
1 files changed, 15 insertions, 13 deletions
diff --git a/tests/stress_tests/fsstress-gocryptfs.bash b/tests/stress_tests/fsstress-gocryptfs.bash
index 5f8c6dc..91952a1 100755
--- a/tests/stress_tests/fsstress-gocryptfs.bash
+++ b/tests/stress_tests/fsstress-gocryptfs.bash
@@ -12,20 +12,19 @@
#
# Nowadays it should pass an indefinite number of iterations.
-if [[ -z $TMPDIR ]]; then
- TMPDIR=/var/tmp
- export TMPDIR
-fi
-
set -eu
+# Init variables to default values if unset or empty
+export TMPDIR=${TMPDIR:-/var/tmp}
+DEBUG=${DEBUG:-0}
+
cd "$(dirname "$0")"
MYNAME=$(basename $0)
source ../fuse-unmount.bash
# fsstress binary
FSSTRESS=$HOME/fuse-xfstests/ltp/fsstress
-if [ ! -x $FSSTRESS ]
+if [[ ! -x $FSSTRESS ]]
then
echo "$MYNAME: fsstress binary not found at $FSSTRESS"
echo "Please clone and compile https://github.com/rfjakob/fuse-xfstests"
@@ -47,22 +46,25 @@ for i in $(mount | cut -d" " -f3 | grep $TMPDIR/$MYNAME) ; do
done
# FS-specific compile and mount
-if [ $MYNAME = fsstress-loopback.bash ]; then
+if [[ $MYNAME = fsstress-loopback.bash ]]; then
echo -n "Recompile go-fuse loopback: "
cd $GOPATH/src/github.com/hanwen/go-fuse/example/loopback
git describe
go build && go install
- $GOPATH/bin/loopback -q $MNT $DIR &
+ OPTS="-q"
+ if [[ $DEBUG -eq 1 ]]; then
+ OPTS="-debug"
+ fi
+ $GOPATH/bin/loopback $OPTS "$MNT" "$DIR" &
disown
-elif [ $MYNAME = fsstress-gocryptfs.bash ]; then
+elif [[ $MYNAME = fsstress-gocryptfs.bash ]]; then
echo "Recompile gocryptfs"
cd $GOPATH/src/github.com/rfjakob/gocryptfs
./build.bash # also prints the version
$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
+ $GOPATH/bin/gocryptfs -q -extpass "echo test" -nosyslog -fusedebug=$DEBUG $DIR $MNT
+elif [[ $MYNAME = fsstress-encfs.bash ]]; then
+ encfs --extpass "echo test" --standard $DIR $MNT
else
echo Unknown mode: $MYNAME
exit 1