# HG changeset patch # User wenzelm # Date 1231599634 -3600 # Node ID 018d5c88c7a8d3bbad4241e37a258bd5f17bec45 # Parent 0a1d32bc5ee5303db98a99babafeedf37d39fde8# Parent a6c641f08af7add3e4d1a98d410d1d4a3820fa2e merged diff -r a6c641f08af7 -r 018d5c88c7a8 Admin/isatest/isatest-statistics --- a/Admin/isatest/isatest-statistics Sat Jan 10 13:11:56 2009 +0100 +++ b/Admin/isatest/isatest-statistics Sat Jan 10 16:00:34 2009 +0100 @@ -1,6 +1,5 @@ #!/usr/bin/env bash # -# $Id$ # Author: Makarius # # DESCRIPTION: Produce statistics from isatest session logs. @@ -93,7 +92,7 @@ for SESSION in $SESSIONS do - fgrep "$SESSION " "$ALL_DATA" > "$SESSION_DATA" + grep "^${SESSION} " "$ALL_DATA" > "$SESSION_DATA" PLOT="plot [] [0:] \"$SESSION_DATA\" using 2:3 smooth sbezier title \"interpolated cpu time\", \"$SESSION_DATA\" using 2:3 smooth csplines title \"cpu time\"" if [ "$PARALLEL" = true ]; then PLOT="${PLOT}, \"$SESSION_DATA\" using 2:4 smooth sbezier title \"interpolated elapsed time\", \"$SESSION_DATA\" using 2:4 smooth csplines title \"elapsed time\""