summaryrefslogtreecommitdiff
path: root/test/test-short-keyword.c
blob: 50d44d3e7c2a9cb902669cb8c94f8c8ffdb4680b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <assert.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>

#include "gate.h"
#include "parser.h"

char *failures[] = {
	"input\n",
	"input \n",
};

char *passes[] = {
	"input a\n",
	"input aaaaaaaa\n",
	"\n",
	"\n\n",
	"\r",
	"\r\r",
	"\r\n",
	"\n\r",
	"\n\n\r",
	"\r\n\r",
};

int main(void) {
	size_t i = 0;
	char *string = NULL;

	for (i = 0; i < sizeof(failures)/sizeof(failures[0]); i++) {
		string = strdup(failures[i]);
		if (string == NULL) {
			perror("strdup");
			return 1;
		}
		fprintf(stderr, "Testing xfail '%s'\n", string);
		assert(0 != parse_line(string));
		free(string);
	}
	for (i = 0; i < sizeof(passes)/sizeof(passes[0]); i++) {
		string = strdup(passes[i]);
		if (string == NULL) {
			perror("strdup");
			return 1;
		}
		fprintf(stderr, "Testing xpass '%s'\n", string);
		assert(0 == parse_line(string));
		free(string);
	}
	return 0;
}