diff options
author | Jakob Unterwurzacher | 2016-05-08 22:23:59 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-05-08 22:23:59 +0200 |
commit | 4b6cf43521a362ff36e38aa77b48ee06fdf11f71 (patch) | |
tree | 9e57b7f6af35eb923056aa94adebefd97f6e6287 /stress_tests/extractloop.bash | |
parent | d56f1ee179857701df0a3bfb1d20a81921088bc5 (diff) |
stress_tests: improve output
Diffstat (limited to 'stress_tests/extractloop.bash')
-rwxr-xr-x | stress_tests/extractloop.bash | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stress_tests/extractloop.bash b/stress_tests/extractloop.bash index b3c13c0..a5d0539 100755 --- a/stress_tests/extractloop.bash +++ b/stress_tests/extractloop.bash @@ -9,6 +9,7 @@ DIR1=$(mktemp -d) DIR2=$(mktemp -d) gocryptfs -q -init -extpass="echo test" $DIR1 gocryptfs -q -extpass="echo test" -nosyslog $DIR1 $DIR2 +#gocryptfs -q -extpass="echo test" -nosyslog -memprofile /tmp/extractloop-mem $DIR1 $DIR2 cd $DIR2 # Cleanup trap @@ -24,7 +25,7 @@ function loop { N=1 while true do - echo "Process $BASHPID iteration $N: $(date)" + echo "[pid $BASHPID] $N: $(date +%H:%M:%S)" tar xf /tmp/linux-3.0.tar.gz diff -ur linux-3.0 /tmp/linux-3.0 rm -Rf linux-3.0 |