1 # Copyright (C) 1991-2013 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Sub-makefile for string portion of library.
23 headers
:= string.h strings.h memory.h endian.h bits
/endian.h \
24 argz.h envz.h byteswap.h bits
/byteswap.h bits
/byteswap-16.h \
25 bits
/string.h bits
/string2.h bits
/string3.h
27 routines
:= strcat strchr strcmp strcoll strcpy strcspn \
28 strverscmp strdup strndup \
29 strerror _strerror strlen strnlen \
30 strncat strncmp strncpy \
31 strrchr strpbrk strsignal strspn strstr strtok \
32 strtok_r strxfrm memchr memcmp memmove memset \
33 mempcpy bcopy bzero ffs ffsll stpcpy stpncpy \
34 strcasecmp strncase strcasecmp_l strncase_l \
35 memccpy memcpy wordcopy strsep strcasestr \
36 swab strfry memfrob memmem rawmemchr strchrnul \
37 $(addprefix argz-
,append count create ctsep next \
38 delete extract insert stringify \
41 strcoll_l strxfrm_l string-inlines memrchr \
42 xpg-strerror strerror_l
44 strop-tests
:= memchr memcmp memcpy memmove mempcpy memset memccpy \
45 stpcpy stpncpy strcat strchr strcmp strcpy strcspn \
46 strlen strncmp strncpy strpbrk strrchr strspn memmem \
47 strstr strcasestr strnlen strcasecmp strncasecmp \
48 strncat rawmemchr strchrnul bcopy bzero
49 tests
:= tester inl-tester noinl-tester testcopy test-ffs \
50 tst-strlen stratcliff tst-svc tst-inlcall \
51 bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
52 tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \
53 bug-strtok1
$(addprefix test-
,$(strop-tests
)) \
54 bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \
57 tests-ifunc
:= $(strop-tests
:%=test-
%-ifunc
)
58 tests
+= $(tests-ifunc
)
62 tester-ENV
= LANGUAGE
=C
63 inl-tester-ENV
= LANGUAGE
=C
64 noinl-tester-ENV
= LANGUAGE
=C
65 tst-strxfrm-ENV
= LOCPATH
=$(common-objpfx
)localedata
66 tst-strxfrm2-ENV
= LOCPATH
=$(common-objpfx
)localedata
67 bug-strcoll1-ENV
= LOCPATH
=$(common-objpfx
)localedata
68 CFLAGS-inl-tester.c
= -fno-builtin
69 CFLAGS-noinl-tester.c
= -fno-builtin
70 CFLAGS-tst-strlen.c
= -fno-builtin
71 CFLAGS-stratcliff.c
= -fno-builtin
72 CFLAGS-test-ffs.c
= -fno-builtin
73 CFLAGS-tst-inlcall.c
= -fno-builtin
75 ifeq ($(run-built-tests
),yes
)
76 tests
: $(objpfx
)tst-svc.out
77 $(objpfx
)tst-svc.out
: tst-svc.input
$(objpfx
)tst-svc
78 GCONV_PATH
=$(common-objpfx
)iconvdata LC_ALL
=C \
79 $(test-program-cmd
) < $(word 1,$^
) > $@
80 @cmp tst-svc.expect
$(objpfx
)tst-svc.out