From de2be6c3c051b1ca70de62efe23d1a962e1c5ad8 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 4 Mar 2007 13:01:49 +0000 Subject: [PATCH] Speed up the test. --- ChangeLog | 2 ++ tests/test-allocsa.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a67c341b6..6ec4c5c73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2007-03-04 Bruno Haible + * tests/test-allocsa.c (main): Halve the number of loop runs. + * modules/alloca-opt-tests: New file. * tests/test-alloca-opt.c: New file. diff --git a/tests/test-allocsa.c b/tests/test-allocsa.c index 6fa1efa04..64e9d541a 100644 --- a/tests/test-allocsa.c +++ b/tests/test-allocsa.c @@ -1,5 +1,5 @@ /* Test of safe automatic memory allocation. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -43,7 +43,7 @@ main () int i; /* Repeat a lot of times, to make sure there's no memory leak. */ - for (i = 0; i < 100000; i++) + for (i = 0; i < 50000; i++) { /* Try various values. n = 0 gave a crash on Alpha with gcc-2.5.8. -- 2.11.0