diff options
Diffstat (limited to 'tests/stress_tests/extractloop.bash')
-rwxr-xr-x | tests/stress_tests/extractloop.bash | 2 |
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 |