diff options
author | Andrea Canciani <ranma42@gmail.com> | 2010-04-09 08:28:33 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2010-04-10 18:25:25 +0200 |
commit | 061ea78ad2838450b20d5550a7285823e0d24e1b (patch) | |
tree | 379d20dbf2179b55a5e52600c2d465b8ec16dd42 /perf | |
parent | 6986970ea5197685274b1fd809d72fbd771c0bab (diff) |
perf: Correct cairo-perf-diff syntax
{ cmd-list; } seems to literally be the required syntax. Blanks and
';' are both mandatory.
Diffstat (limited to 'perf')
-rwxr-xr-x | perf/cairo-perf-diff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/cairo-perf-diff b/perf/cairo-perf-diff index 5700cf25..5a4b7b38 100755 --- a/perf/cairo-perf-diff +++ b/perf/cairo-perf-diff @@ -214,7 +214,7 @@ run_cairo_perf_if_not_cached() { } echo "Running \"cairo-perf $CAIRO_PERF_OPTIONS\" against $rev. Results will be cached in:" - {./$benchmark $CAIRO_PERF_OPTIONS || echo "*** Performance test crashed"} >> $perf + { ./$benchmark $CAIRO_PERF_OPTIONS || echo "*** Performance test crashed"; } >> $perf cd $owd } |