aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/lists.c
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-09-13 15:18:55 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-09-13 15:18:55 +0200
commit059664368a5f4ed036e87c0a5e0ed1fae1706f3d (patch)
treebb788ef69c4fca167bdae1609d2e929094480f6e /test/c/lists.c
parentf0f25eabe5b374f20a5db30f652f6e994fff3fb3 (diff)
downloadcompcert-kvx-059664368a5f4ed036e87c0a5e0ed1fae1706f3d.tar.gz
compcert-kvx-059664368a5f4ed036e87c0a5e0ed1fae1706f3d.zip
Reducing further the input size of the tests
Diffstat (limited to 'test/c/lists.c')
-rw-r--r--test/c/lists.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/c/lists.c b/test/c/lists.c
index d1c67954..a72ec398 100644
--- a/test/c/lists.c
+++ b/test/c/lists.c
@@ -61,8 +61,8 @@ int main(int argc, char ** argv)
int n, niter, i;
struct list * l;
- if (argc >= 2) n = atoi(argv[1]); else n = 100;
- if (argc >= 3) niter = atoi(argv[1]); else niter = 20000;
+ if (argc >= 2) n = atoi(argv[1]); else n = 500;
+ if (argc >= 3) niter = atoi(argv[1]); else niter = 100;
l = buildlist(n);
if (checklist(n, reverselist(l))) {
printf("OK\n");