aboutsummaryrefslogtreecommitdiffstats
path: root/test/harness/mainintegr.c
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-02-09 14:55:48 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-02-09 14:55:48 +0000
commit2ae43be7b9d4118335c9d2cef6e098f9b9f807fe (patch)
treebbb5e49ccbf7e3614966571acc317f8d318fecad /test/harness/mainintegr.c
downloadcompcert-2ae43be7b9d4118335c9d2cef6e098f9b9f807fe.tar.gz
compcert-2ae43be7b9d4118335c9d2cef6e098f9b9f807fe.zip
Initial import of compcert
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/harness/mainintegr.c')
-rw-r--r--test/harness/mainintegr.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/harness/mainintegr.c b/test/harness/mainintegr.c
new file mode 100644
index 00000000..5f5bdfe0
--- /dev/null
+++ b/test/harness/mainintegr.c
@@ -0,0 +1,13 @@
+#include <stdlib.h>
+#include <stdio.h>
+
+extern double test(int);
+
+int main(int argc, char ** argv)
+{
+ int n; double r;
+ if (argc >= 2) n = atoi(argv[1]); else n = 10000;
+ r = test(n);
+ printf("integr(square, 0.0, 1.0, %d) = %g\n", n, r);
+ return 0;
+}