diff options
author | Jakob Unterwurzacher | 2021-09-10 11:51:41 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-09-10 11:51:41 +0200 |
commit | c50d67f1039b8db90de441a3907994adb21668e8 (patch) | |
tree | 13ac1e4fca717d0e1d1506bf080b1b1f49ba68e4 /profiling/streaming-read.bash | |
parent | ad21647f250697d88eade461c08073732d2cf7e0 (diff) |
profiling: accept parameters & show actual command lines
Diffstat (limited to 'profiling/streaming-read.bash')
-rwxr-xr-x | profiling/streaming-read.bash | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/profiling/streaming-read.bash b/profiling/streaming-read.bash index ef55138..86ef942 100755 --- a/profiling/streaming-read.bash +++ b/profiling/streaming-read.bash @@ -5,8 +5,10 @@ cd "$(dirname "$0")" T=$(mktemp -d) mkdir "$T/a" "$T/b" -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a" -../gocryptfs -quiet -extpass "echo test" "$T/a" "$T/b" +set -x +../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$@" "$T/a" +{ set +x ; } 2> /dev/null +../gocryptfs -quiet -extpass "echo test" "$@" "$T/a" "$T/b" # Cleanup trap trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT @@ -16,8 +18,10 @@ dd if=/dev/zero of="$T/b/zero" bs=1M count=100 status=none # Remount with profiling fusermount -u "$T/b" +set -x ../gocryptfs -quiet -extpass "echo test" -cpuprofile "$T/cprof" -memprofile "$T/mprof" \ - "$T/a" "$T/b" + "$@" "$T/a" "$T/b" +{ set +x ; } 2> /dev/null # Read 10 x 100MB instead of 1 x 1GB to keep the used disk space low for i in $(seq 1 10); do |