diff options
Diffstat (limited to 'profiling/write-trace.bash')
-rwxr-xr-x | profiling/write-trace.bash | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/profiling/write-trace.bash b/profiling/write-trace.bash index 707e1d3..31af492 100755 --- a/profiling/write-trace.bash +++ b/profiling/write-trace.bash @@ -8,9 +8,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" -trace "$T/trace" \ - "$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 |