blob: 8424a6162df771fb468d4fc54c2c00c11da00cdc [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001# Copyright (C) 1991-2015 Free Software Foundation, Inc.
2# This file is part of the GNU C Library.
3
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.
8
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.
13
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/>.
17
18#
19# Sub-makefile for string portion of library.
20#
21subdir := string
22
23include ../Makeconfig
24
25headers := string.h strings.h memory.h endian.h bits/endian.h \
26 argz.h envz.h byteswap.h bits/byteswap.h bits/byteswap-16.h \
27 bits/string.h bits/string2.h bits/string3.h
28
29routines := strcat strchr strcmp strcoll strcpy strcspn \
30 strverscmp strdup strndup \
31 strerror _strerror strlen strnlen \
32 strncat strncmp strncpy \
33 strrchr strpbrk strsignal strspn strstr strtok \
34 strtok_r strxfrm memchr memcmp memmove memset \
35 mempcpy bcopy bzero ffs ffsll stpcpy stpncpy \
36 strcasecmp strncase strcasecmp_l strncase_l \
37 memccpy memcpy wordcopy strsep strcasestr \
38 swab strfry memfrob memmem rawmemchr strchrnul \
39 $(addprefix argz-,append count create ctsep next \
40 delete extract insert stringify \
41 addsep replace) \
42 envz basename \
43 strcoll_l strxfrm_l string-inlines memrchr \
44 xpg-strerror strerror_l
45
46strop-tests := memchr memcmp memcpy memmove mempcpy memset memccpy \
47 stpcpy stpncpy strcat strchr strcmp strcpy strcspn \
48 strlen strncmp strncpy strpbrk strrchr strspn memmem \
49 strstr strcasestr strnlen strcasecmp strncasecmp \
50 strncat rawmemchr strchrnul bcopy bzero memrchr
51tests := tester inl-tester noinl-tester testcopy test-ffs \
52 tst-strlen stratcliff tst-svc tst-inlcall \
53 bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
54 tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \
55 bug-strtok1 $(addprefix test-,$(strop-tests)) \
56 bug-envz1 tst-strxfrm2 tst-endian tst-svc2 \
57 tst-strtok_r
58
59xtests = tst-strcoll-overflow
60
61ifeq ($(run-built-tests),yes)
62tests-special += $(objpfx)tst-svc-cmp.out
63endif
64
65include ../Rules
66
67CFLAGS-inl-tester.c = -fno-builtin
68CFLAGS-noinl-tester.c = -fno-builtin
69CFLAGS-tst-strlen.c = -fno-builtin
70CFLAGS-stratcliff.c = -fno-builtin
71CFLAGS-test-ffs.c = -fno-builtin
72CFLAGS-tst-inlcall.c = -fno-builtin
73
74ifeq ($(run-built-tests),yes)
75$(objpfx)tst-svc-cmp.out: tst-svc.expect $(objpfx)tst-svc.out
76 cmp $^ > $@; \
77 $(evaluate-test)
78endif