test/harness/testcase.h
changeset 101 f44c530f80da
parent 96 8c2d6a0cf717
child 102 ff0aa9b1397a
     1.1 --- a/test/harness/testcase.h	Tue Sep 24 07:18:50 2013 +0100
     1.2 +++ b/test/harness/testcase.h	Sat Oct 26 18:47:33 2013 +0100
     1.3 @@ -15,6 +15,10 @@
     1.4  } TestcaseLocation;
     1.5  
     1.6  typedef struct {
     1.7 +    GSList *texts;
     1.8 +} TestcaseSummary;
     1.9 +
    1.10 +typedef struct {
    1.11      /*
    1.12       * Does this warning relate to a real problem in the etext
    1.13       * (eg., error and false-negative).
    1.14 @@ -38,12 +42,15 @@
    1.15      char *tmpdir;
    1.16      GSList *inputs;
    1.17      char *expected;
    1.18 +    TestcaseSummary summary;
    1.19      GSList *warnings;
    1.20      char *encoding;	/* The character encoding to talk to BOOKLOUPE in */
    1.21      char **options;
    1.22      enum {
    1.23  	TESTCASE_XFAIL=1<<0,
    1.24  	TESTCASE_TMP_DIR=1<<1,
    1.25 +	TESTCASE_UNIX_NEWLINES=1<<2,
    1.26 +	TESTCASE_OS9_NEWLINES=1<<3,
    1.27      } flags;
    1.28  } Testcase;
    1.29