test/harness/testcase.h
author ali <ali@juiblex.co.uk>
Wed Jan 25 19:33:43 2012 +0000 (2012-01-25)
changeset 2 cbd63f7ba40f
child 6 faab25d520dd
permissions -rw-r--r--
Don't test that gutcheck ignores paragraphs with only short lines
ali@0
     1
#ifndef TESTCASE_H
ali@0
     2
#define TESTCASE_H
ali@0
     3
ali@0
     4
typedef struct {
ali@0
     5
    char *basename;
ali@0
     6
    char *input;
ali@0
     7
    char *expected;
ali@0
     8
    enum {
ali@0
     9
	TESTCASE_XFAIL=1<<0,
ali@0
    10
    } flags;
ali@0
    11
} Testcase;
ali@0
    12
ali@0
    13
boolean testcase_run(Testcase *testcase);
ali@0
    14
void testcase_free(Testcase *testcase);
ali@0
    15
ali@0
    16
#endif	/* TESTCASE_H */