add test_stability.sh script to test last N commit for perf

This commit is contained in:
e.gavrin
2014-08-08 13:56:59 +04:00
parent c688f27f62
commit 7038288f7f
4 changed files with 69 additions and 1 deletions
-1
View File
@@ -61,7 +61,6 @@ then
echo -e $SHARE_OUTPUT;
fi;
echo
echo ===================
echo -e $RSS_OUTPUT | awk '{ if ($1 != "") { sum += $1; n += 1; if ($1 > max) { max = $1; } } } END { printf "Rss average:\t\t%d Kb\tRss max: %d Kb\n", sum / n, max; }'
echo -e $PSS_OUTPUT | awk '{ if ($1 != "") { sum += $1; n += 1; if ($1 > max) { max = $1; } } } END { printf "Pss average:\t\t%d Kb\tPss max: %d Kb\n", sum / n, max; }'