blob: 0b84d1823fa76518538b1ae747c3ca971cf0cb1b (
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
|
#include"parser.tab.h"
#include<unistd.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<stdio.h>
#include<stdlib.h>
extern int yyparse();
int main(int argc, char **argv) {
/*
int input;
if(argc != 2) {
printf("%s <input file>");
return 1;
}
input = open(argv[1], O_RDONLY);
dup2(input, STDIN_FILENO);
close(input);
return yyparse();
*/
/* We really should test that the
* generated parser works with input
* but it froze and I don't want to waste
* time debugging that. For this test what
* we care about is that it compiles and links.
*/
void* __attribute__((unused)) dummy = (void*)yyparse;
return 0;
}
int yywrap(void) {
return 0;
}
int yyerror(void) {
printf("Parse error\n");
exit(1);
}
|