aboutsummaryrefslogtreecommitdiff
path: root/profiling/streaming-write.bash
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/streaming-write.bash')
-rwxr-xr-xprofiling/streaming-write.bash6
1 files changed, 4 insertions, 2 deletions
diff --git a/profiling/streaming-write.bash b/profiling/streaming-write.bash
index 2cd74ad..6f3af56 100755
--- a/profiling/streaming-write.bash
+++ b/profiling/streaming-write.bash
@@ -5,9 +5,11 @@ cd "$(dirname "$0")"
T=$(mktemp -d)
mkdir "$T/a" "$T/b"
-../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a"
+set -x
+../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$@" "$T/a"
../gocryptfs -quiet -extpass "echo test" -cpuprofile "$T/cprof" -memprofile "$T/mprof" \
- "$T/a" "$T/b"
+ "$@" "$T/a" "$T/b"
+{ set +x ; } 2> /dev/null
# Cleanup trap
trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT