test/harness/testcase.h
changeset 184 cd3068704d3a
parent 108 853e8a9ccfc9
child 191 189183b37598
     1.1 --- a/test/harness/testcase.h	Tue Sep 24 07:18:50 2013 +0100
     1.2 +++ b/test/harness/testcase.h	Sun Oct 20 21:06:25 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,14 @@
    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      } flags;
    1.27  } Testcase;
    1.28