summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-06-23 14:33:54 +0200
committerBenjamin Otte <otte@redhat.com>2010-06-23 14:33:54 +0200
commitf38960e75afbdd1e1e72528a7fd35dbae68dc65f (patch)
treedce6e229d85a5284cfbfed557c9deef3a6e8f9fe
parent60a4d8dc94ed7141114b99bd453019a16ed29b3d (diff)
perf: Lines starting with # are comments
-rw-r--r--perf/cairo-perf-report.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perf/cairo-perf-report.c b/perf/cairo-perf-report.c
index e62c6eb7..27d4587b 100644
--- a/perf/cairo-perf-report.c
+++ b/perf/cairo-perf-report.c
@@ -129,7 +129,7 @@ test_report_parse (test_report_t *report, char *line, char *configuration)
/* The code here looks funny unless you understand that these are
* all macro calls, (and then the code just looks sick). */
- if (*s == '\n')
+ if (*s == '\n' || *s == '#')
return TEST_REPORT_STATUS_COMMENT;
skip_char ('[');