aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/integr.c
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-09-17 12:04:56 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-09-17 12:04:56 +0000
commit2ec5b3fb2ccb0120be641e077089f3da5e53d8a3 (patch)
treed1e6f6a9a3d99f0095dc96fe320214de68918158 /test/c/integr.c
parente37d620f5b9b05e16563545cba9c538f8d31c746 (diff)
downloadcompcert-kvx-2ec5b3fb2ccb0120be641e077089f3da5e53d8a3.tar.gz
compcert-kvx-2ec5b3fb2ccb0120be641e077089f3da5e53d8a3.zip
Davantage de tests
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@104 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/c/integr.c')
-rw-r--r--test/c/integr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/integr.c b/test/c/integr.c
index 25337dc4..882325c3 100644
--- a/test/c/integr.c
+++ b/test/c/integr.c
@@ -25,7 +25,7 @@ double test(int n)
int main(int argc, char ** argv)
{
int n; double r;
- if (argc >= 2) n = atoi(argv[1]); else n = 10000;
+ if (argc >= 2) n = atoi(argv[1]); else n = 10000000;
r = test(n);
printf("integr(square, 0.0, 1.0, %d) = %g\n", n, r);
return 0;