test/harness/testcase.h
changeset 200 8e0ba1a088c4
parent 167 f0740133c606
parent 199 f44c530f80da
     1.1 --- a/test/harness/testcase.h	Sun Sep 29 22:51:27 2013 +0100
     1.2 +++ b/test/harness/testcase.h	Sun Oct 27 16:36:46 2013 +0000
     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 @@ -39,6 +43,7 @@
    1.15      GSList *inputs;
    1.16      GSList *outputs;
    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 @@ -46,6 +51,8 @@
    1.23      enum {
    1.24  	TESTCASE_XFAIL=1<<0,
    1.25  	TESTCASE_TMP_DIR=1<<1,
    1.26 +	TESTCASE_UNIX_NEWLINES=1<<2,
    1.27 +	TESTCASE_OS9_NEWLINES=1<<3,
    1.28      } flags;
    1.29  } Testcase;
    1.30