From 6f3a9afdda5c02dc84522fc8604addb7e5c8d7df Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 17 Feb 2010 13:24:48 +0000 Subject: Moved test harness C files here git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1251 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/cminor/mainlists.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 test/cminor/mainlists.c (limited to 'test/cminor/mainlists.c') diff --git a/test/cminor/mainlists.c b/test/cminor/mainlists.c new file mode 100644 index 00000000..281b919f --- /dev/null +++ b/test/cminor/mainlists.c @@ -0,0 +1,35 @@ +#include +#include +#include + +struct cons { int hd; struct cons * tl; }; +typedef struct cons * list; + +extern list buildlist(int n); +extern list reverselist(list l); + +int checklist(int n, list l) +{ + int i; + for (i = 0; i <= n; i++) { + if (l == NULL) return 0; + if (l->hd != i) return 0; + l = l->tl; + } + return (l == NULL); +} + +int main(int argc, char ** argv) +{ + int n; + + if (argc >= 2) n = atoi(argv[1]); else n = 10; + if (checklist(n, reverselist(buildlist(n)))) { + printf("OK\n"); + return 0; + } else { + printf("Bug!\n"); + return 2; + } +} + -- cgit