From 061ea78ad2838450b20d5550a7285823e0d24e1b Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Fri, 9 Apr 2010 08:28:33 +0200 Subject: [PATCH] perf: Correct cairo-perf-diff syntax { cmd-list; } seems to literally be the required syntax. Blanks and ';' are both mandatory. --- perf/cairo-perf-diff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perf/cairo-perf-diff b/perf/cairo-perf-diff index 5700cf258..5a4b7b386 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 }