aboutsummaryrefslogtreecommitdiff
path: root/tests/stress_tests/extractloop.bash
diff options
context:
space:
mode:
authorJakob Unterwurzacher2019-01-03 18:16:02 +0100
committerJakob Unterwurzacher2019-01-03 18:24:14 +0100
commit1c9fb707fea50d31dd940382b6a3af1a7e4901a3 (patch)
tree9efe70a00f506d0b48cb966d90d477a77867b984 /tests/stress_tests/extractloop.bash
parenta1ba4b6576695a3e680364813425ffd9c9c7c148 (diff)
tests: overengineer extractloop_plot_csv.m a little
Plot iteration time on second y axis, adjust line styles
Diffstat (limited to 'tests/stress_tests/extractloop.bash')
-rwxr-xr-xtests/stress_tests/extractloop.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stress_tests/extractloop.bash b/tests/stress_tests/extractloop.bash
index 055103b..742715d 100755
--- a/tests/stress_tests/extractloop.bash
+++ b/tests/stress_tests/extractloop.bash
@@ -93,7 +93,7 @@ function loop {
delta=$((t2-t1))
if [[ $FSPID -gt 0 && -d /proc ]]; then
RSS=$(grep VmRSS /proc/$FSPID/status | tr -s ' ' | cut -f2 -d ' ')
- echo "$N,$SECONDS,$RSS" >> $CSV
+ echo "$N,$SECONDS,$RSS,$delta" >> $CSV
fi
echo "[looper $ID] Iteration $N done, $delta seconds, RSS $RSS kiB"
let N=$N+1