aboutsummaryrefslogtreecommitdiff
path: root/profiling
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-04-05 18:20:59 +0200
committerJakob Unterwurzacher2021-04-05 18:20:59 +0200
commit770c4deb7182b17a5a2f35a7ebfc0f5ef0cae158 (patch)
tree0fc91d4f87c81a31ba107731ee641e15151d34d9 /profiling
parentf73aee72f87ba6cd3e46184ae75824fd38250f04 (diff)
profiling/ls.bash: add -nosyslog
This makes sure we actually see the dirCache stats.
Diffstat (limited to 'profiling')
-rwxr-xr-xprofiling/ls.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/profiling/ls.bash b/profiling/ls.bash
index 1183ff6..5f736b6 100755
--- a/profiling/ls.bash
+++ b/profiling/ls.bash
@@ -9,7 +9,7 @@ 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
+../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,7 +24,7 @@ echo "done, $SECONDS seconds"
echo "Remount..."
fusermount -u $T/b
-../gocryptfs -quiet -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \
+../gocryptfs -quiet -nosyslog -extpass "echo test" -cpuprofile $T/cprof -memprofile $T/mprof \
$T/a $T/b
echo "Running ls under profiler (3x)..."