diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/frameworks/8 flex/prog.c | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/frameworks/8 flex/prog.c')
-rw-r--r-- | meson/test cases/frameworks/8 flex/prog.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meson/test cases/frameworks/8 flex/prog.c b/meson/test cases/frameworks/8 flex/prog.c new file mode 100644 index 000000000..0b84d1823 --- /dev/null +++ b/meson/test cases/frameworks/8 flex/prog.c @@ -0,0 +1,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); +} |