summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2015-07-19 12:32:01 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2015-10-07 14:27:53 +0100
commit34c3bc02787106b55d9ba055f4d8cc64cb83f02b (patch)
tree99577dc03ffc0c833501c85448459a0010bbe61c
parente3e29af3a2dd1afde92f66572a48148e92219e42 (diff)
Prefer igt_stats
-rwxr-xr-xezbench.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/ezbench.sh b/ezbench.sh
index 902a4f3..7f6c6a4 100755
--- a/ezbench.sh
+++ b/ezbench.sh
@@ -386,9 +386,8 @@ do
# Process the data ourselves
statistics=
result=$(callIfDefined $processHookFuncName "$output") || {
- statistics=$(echo "$output" | $ezBenchDir/fps_stats.awk)
- result=$(echo "$statistics" | cut -d ' ' -f 1)
- statistics=$(echo "$statistics" | cut -d ' ' -f 2-)
+ statistics=$(echo "$output" | $ezBenchDir/fps_stats.awk | cut -d ' ' -f 2-)
+ result=$(echo "$output" | igt_stats)
}
echo $result > $logsFolder/${commit}_result_${testNames[$t]}
if [ -z "${testPrevFps[$t]}" ]; then