summaryrefslogtreecommitdiff
path: root/test/c/fft.c
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2008-07-25 16:22:57 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2008-07-25 16:22:57 +0000
commit65a29b666dffa2a06528bef062392c809db7efd6 (patch)
tree90cd5429461e53f371a2c45b25d9f454bbe13024 /test/c/fft.c
parent611e7b09253dbbb98e9cd4ca4e07a60b50e693fd (diff)
Augmenter le temps d'execution par defaut
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@700 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/c/fft.c')
-rw-r--r--test/c/fft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/fft.c b/test/c/fft.c
index aec283a..48f1656 100644
--- a/test/c/fft.c
+++ b/test/c/fft.c
@@ -151,7 +151,7 @@ int main(int argc, char ** argv)
double enp, t, y, z, zr, zi, zm, a;
double * pxr, * pxi;
- if (argc >= 2) n = atoi(argv[1]); else n = 16;
+ if (argc >= 2) n = atoi(argv[1]); else n = 18;
np = 1 << n;
enp = np;
npm = np / 2 - 1;