diff options
author | David Schleef <ds@schleef.org> | 2009-11-20 19:22:39 +0100 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2009-11-20 19:22:39 +0100 |
commit | 0acec171e9acfd147ffac090f2fcccc0b557da4f (patch) | |
tree | 86772b9a48d4fa221f8a5b2a688bdcade680f955 | |
parent | 102c0308dde99fc8451ab1430915dbd7485fc0b1 (diff) |
test: add compile_parse_cmerge-base
-rw-r--r-- | testsuite/Makefile.am | 3 | ||||
-rw-r--r-- | testsuite/compile_parse_c.c | 90 |
2 files changed, 92 insertions, 1 deletions
diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am index e0736ab..96a9d14 100644 --- a/testsuite/Makefile.am +++ b/testsuite/Makefile.am @@ -8,7 +8,8 @@ TESTS = \ test_accsadubl test-schro \ compile_opcodes_sys exec_opcodes_sys \ compile_opcodes_float exec_opcodes_float \ - compile_opcodes_pixel exec_opcodes_pixel + compile_opcodes_pixel exec_opcodes_pixel \ + compile_parse_c XFAIL_TESTS = \ compile_opcodes_float_c \ diff --git a/testsuite/compile_parse_c.c b/testsuite/compile_parse_c.c new file mode 100644 index 0000000..a950fdc --- /dev/null +++ b/testsuite/compile_parse_c.c @@ -0,0 +1,90 @@ + +#include <orc/orc.h> +#include <orc-test/orctest.h> +#include <orc/orcparse.h> + +#include <stdio.h> +#include <stdlib.h> + +static char * read_file (const char *filename); +void output_code (OrcProgram *p, FILE *output); +void output_code_header (OrcProgram *p, FILE *output); +void output_code_test (OrcProgram *p, FILE *output); + +int error = FALSE; + +int +main (int argc, char *argv[]) +{ + char *code; + int n; + int i; + OrcProgram **programs; + const char *filename = "test.orc"; + + orc_init (); + orc_test_init (); + + if (argc >= 2) { + filename = argv[1]; + } + code = read_file (filename); + if (!code) { + printf("compile_parse_test <file.orc>\n"); + exit(1); + } + + n = orc_parse (code, &programs); + + for(i=0;i<n;i++){ + OrcCompileResult ret; + + printf("%s:\n", programs[i]->name); + ret = orc_test_gcc_compile (programs[i]); + if (ret == ORC_TEST_FAILED) { + error = TRUE; + } + } + + if (error) return 1; + return 0; +} + + +static char * +read_file (const char *filename) +{ + FILE *file = NULL; + char *contents = NULL; + long size; + int ret; + + file = fopen (filename, "r"); + if (file == NULL) return NULL; + + ret = fseek (file, 0, SEEK_END); + if (ret < 0) goto bail; + + size = ftell (file); + if (size < 0) goto bail; + + ret = fseek (file, 0, SEEK_SET); + if (ret < 0) goto bail; + + contents = malloc (size + 1); + if (contents == NULL) goto bail; + + ret = fread (contents, size, 1, file); + if (ret < 0) goto bail; + + contents[size] = 0; + + return contents; +bail: + /* something failed */ + if (file) fclose (file); + if (contents) free (contents); + + return NULL; +} + |