diff -r f0740133c606 -r 8e0ba1a088c4 test/harness/testcase.h --- a/test/harness/testcase.h Sun Sep 29 22:51:27 2013 +0100 +++ b/test/harness/testcase.h Sun Oct 27 16:36:46 2013 +0000 @@ -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). @@ -39,6 +43,7 @@ GSList *inputs; GSList *outputs; char *expected; + TestcaseSummary summary; GSList *warnings; char *encoding; /* The character encoding to talk to BOOKLOUPE in */ char **options; @@ -46,6 +51,8 @@ enum { TESTCASE_XFAIL=1<<0, TESTCASE_TMP_DIR=1<<1, + TESTCASE_UNIX_NEWLINES=1<<2, + TESTCASE_OS9_NEWLINES=1<<3, } flags; } Testcase;