diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-11-07 06:41:16 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-11-07 10:09:33 -0800 |
commit | a6a9c1a36b48f304c8a2138c147d88a448161366 (patch) | |
tree | a6c282e837f686c3360880505702499049fe8a5a /string | |
parent | d41985b71e0616d00645581dcd7155abdbb4b15f (diff) | |
download | glibc-a6a9c1a36b48f304c8a2138c147d88a448161366.zip glibc-a6a9c1a36b48f304c8a2138c147d88a448161366.tar.gz glibc-a6a9c1a36b48f304c8a2138c147d88a448161366.tar.bz2 |
test-memcpy.c: Double TIMEOUT to (8 * 60)
commit d585ba47fcda99fdf228e3e45a01b11a15efbc5a
Author: Noah Goldstein <goldstein.w.n@gmail.com>
Date: Mon Nov 1 00:49:48 2021 -0500
string: Make tests birdirectional test-memcpy.c
This commit updates the memcpy tests to test both dst > src and dst <
src. This is because there is logic in the code based on the
Signed-off-by: Noah Goldstein <goldstein.w.n@gmail.com>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
significantly increased the number of tests. On Intel Core i7-1165G7,
test-memcpy takes 120 seconds to run when machine is idle. Double
TIMEOUT to (8 * 60) for test-memcpy to avoid timeout when machine is
under heavy load.
Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
Diffstat (limited to 'string')
-rw-r--r-- | string/test-memcpy.c | 1 | ||||
-rw-r--r-- | string/test-string.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/string/test-memcpy.c b/string/test-memcpy.c index 3b0f312..101d51c 100644 --- a/string/test-memcpy.c +++ b/string/test-memcpy.c @@ -22,6 +22,7 @@ # define MIN_PAGE_SIZE 131072 # define TEST_MAIN # define TEST_NAME "memcpy" +# define TIMEOUT (8 * 60) # include "test-string.h" char *simple_memcpy (char *, const char *, size_t); diff --git a/string/test-string.h b/string/test-string.h index 8ee00a0..9a6b76d 100644 --- a/string/test-string.h +++ b/string/test-string.h @@ -68,7 +68,9 @@ extern impl_t __start_impls[], __stop_impls[]; # define TEST_FUNCTION test_main -# define TIMEOUT (4 * 60) +# ifndef TIMEOUT +# define TIMEOUT (4 * 60) +# endif # define OPT_ITERATIONS 10000 # define OPT_RANDOM 10001 # define OPT_SEED 10002 |