diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-11-10 16:16:25 -0600 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-11-10 20:14:09 -0600 |
commit | 6c1e3c0fd09a9653f562db69e77281e358451163 (patch) | |
tree | 5a4e5e20a1f42bf5501e9d93ef381ddeea14a0d7 /string/Makefile | |
parent | 2f9062d7171850451e6044ef78d91ff8c017b9c0 (diff) | |
download | glibc-6c1e3c0fd09a9653f562db69e77281e358451163.zip glibc-6c1e3c0fd09a9653f562db69e77281e358451163.tar.gz glibc-6c1e3c0fd09a9653f562db69e77281e358451163.tar.bz2 |
String: Split memcpy tests so that parallel build is faster
No bug.
This commit splits test-memcpy.c into test-memcpy.c and
test-memcpy-large.c. The idea is parallel builds will be able to run
both in parallel speeding up the process.
Signed-off-by: Noah Goldstein <goldstein.w.n@gmail.com>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'string/Makefile')
-rw-r--r-- | string/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/string/Makefile b/string/Makefile index 2199dd3..a7069ff 100644 --- a/string/Makefile +++ b/string/Makefile @@ -48,9 +48,9 @@ routines := strcat strchr strcmp strcoll strcpy strcspn \ sigdescr_np sigabbrev_np strerrorname_np \ strerrordesc_np -strop-tests := memchr memcmp memcpy memcmpeq memmove mempcpy memset \ - memccpy stpcpy stpncpy strcat strchr strcmp strcpy strcspn \ - strlen strncmp strncpy strpbrk strrchr strspn memmem \ +strop-tests := memchr memcmp memcpy memcpy-large memcmpeq memmove mempcpy \ + memset memccpy stpcpy stpncpy strcat strchr strcmp strcpy \ + strcspn strlen strncmp strncpy strpbrk strrchr strspn memmem \ strstr strcasestr strnlen strcasecmp strncasecmp \ strncat rawmemchr strchrnul bcopy bzero memrchr \ explicit_bzero |