aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/qsort.c
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-09-10 17:50:42 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-09-10 17:50:42 +0200
commit5b6c019a507688dfcf63b9ef54f7731137422ab5 (patch)
treee9b5e653c1facbedc8756c1320f5ac9563695c80 /test/c/qsort.c
parent8caa5a2e1f825b6e3d6b87e294c1a53c65d62612 (diff)
downloadcompcert-kvx-5b6c019a507688dfcf63b9ef54f7731137422ab5.tar.gz
compcert-kvx-5b6c019a507688dfcf63b9ef54f7731137422ab5.zip
Starting to modify official CompCert tests to be passable with the simu
Diffstat (limited to 'test/c/qsort.c')
-rw-r--r--test/c/qsort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/c/qsort.c b/test/c/qsort.c
index 66eef68d..a9d5757a 100644
--- a/test/c/qsort.c
+++ b/test/c/qsort.c
@@ -34,7 +34,7 @@ int main(int argc, char ** argv)
int n, i, j;
int * a, * b;
- if (argc >= 2) n = atoi(argv[1]); else n = 100000;
+ if (argc >= 2) n = atoi(argv[1]); else n = 10000;
a = malloc(n * sizeof(int));
b = malloc(n * sizeof(int));
for (j = 0; j < NITER; j++) {