test/harness/testcase.h
changeset 191 189183b37598
parent 167 f0740133c606
parent 184 cd3068704d3a
     1.1 --- a/test/harness/testcase.h	Sun Sep 29 22:51:27 2013 +0100
     1.2 +++ b/test/harness/testcase.h	Mon Oct 21 23:36:40 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 @@ -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,7 @@
    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      } flags;
    1.28  } Testcase;
    1.29