diff -r 853e8a9ccfc9 -r cd3068704d3a test/harness/testcase.h --- a/test/harness/testcase.h Tue Sep 24 07:18:50 2013 +0100 +++ b/test/harness/testcase.h Sun Oct 20 21:06:25 2013 +0100 @@ -15,6 +15,10 @@ } TestcaseLocation; typedef struct { + GSList *texts; +} TestcaseSummary; + +typedef struct { /* * Does this warning relate to a real problem in the etext * (eg., error and false-negative). @@ -38,12 +42,14 @@ char *tmpdir; GSList *inputs; char *expected; + TestcaseSummary summary; GSList *warnings; char *encoding; /* The character encoding to talk to BOOKLOUPE in */ char **options; enum { TESTCASE_XFAIL=1<<0, TESTCASE_TMP_DIR=1<<1, + TESTCASE_UNIX_NEWLINES=1<<2, } flags; } Testcase;