From c50d67f1039b8db90de441a3907994adb21668e8 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 10 Sep 2021 11:51:41 +0200 Subject: [PATCH] profiling: accept parameters & show actual command lines --- profiling/ls.bash | 10 +++++++--- profiling/streaming-read.bash | 10 +++++++--- profiling/streaming-write.bash | 6 ++++-- profiling/tar-extract.bash | 6 ++++-- profiling/write-trace.bash | 6 ++++-- 5 files changed, 26 insertions(+), 12 deletions(-) diff --git a/profiling/ls.bash b/profiling/ls.bash index d8d55f6..35f5a39 100755 --- a/profiling/ls.bash +++ b/profiling/ls.bash @@ -8,8 +8,10 @@ cd "$(dirname "$0")" T=$(mktemp -d) mkdir "$T/a" "$T/b" -../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a" -../gocryptfs -quiet -nosyslog -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 -nosyslog -extpass "echo test" "$@" "$T/a" "$T/b" # Cleanup trap trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT @@ -24,8 +26,10 @@ echo "done, $SECONDS seconds" echo "Remount..." fusermount -u "$T/b" +set -x ../gocryptfs -quiet -nosyslog -extpass "echo test" -cpuprofile "$T/cprof" -memprofile "$T/mprof" \ - "$T/a" "$T/b" + "$@" "$T/a" "$T/b" +{ set +x ; } 2> /dev/null echo "Running ls under profiler (3x)..." for i in 1 2 3; do 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 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 diff --git a/profiling/tar-extract.bash b/profiling/tar-extract.bash index 25f99a6..f176368 100755 --- a/profiling/tar-extract.bash +++ b/profiling/tar-extract.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" -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 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