diff -r 853e8a9ccfc9 -r f44c530f80da test/harness/testcase.h --- a/test/harness/testcase.h Tue Sep 24 07:18:50 2013 +0100 +++ b/test/harness/testcase.h Sat Oct 26 18:47:33 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,15 @@ 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, + TESTCASE_OS9_NEWLINES=1<<3, } flags; } Testcase;