diff options
author | Clément Grégoire <lectem@gmail.com> | 2020-04-23 13:58:01 +0000 |
---|---|---|
committer | Clément Grégoire <lectem@gmail.com> | 2020-04-28 17:02:59 +0000 |
commit | 82f54ad144d67c319abe218bcecfc08b05ac5a40 (patch) | |
tree | b516626651d5bf874e84779cc86b23d57dbd0d0f /bench | |
parent | ab773c7e914633ec4a3ee1f7cdea8b168d3bce1a (diff) |
Fix perf monitoring merge function
Diffstat (limited to 'bench')
-rwxr-xr-x | bench/perf_monitoring/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/perf_monitoring/run.sh b/bench/perf_monitoring/run.sh index b62ac6cce..7e2ea1264 100755 --- a/bench/perf_monitoring/run.sh +++ b/bench/perf_monitoring/run.sh @@ -107,7 +107,7 @@ function test_current prev="" if [ -e "$name.backup" ]; then - prev=`grep $rev "$name.backup" | cut -c 14-` + prev=`grep $rev "$name.backup" | cut -d ' ' -f 2-` fi res=$prev count_rev=`echo $prev | wc -w` |