support: Add TEST_COMPARE_BLOB, support_quote_blob
[glibc.git] / support / Makefile
blobbc2e5c69a2429b1d6a19e723975b4d88cfa9a1e3
1 # Makefile for support library, used only at build and test time
2 # Copyright (C) 2016-2018 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
19 subdir := support
21 include ../Makeconfig
23 extra-libs := libsupport
24 extra-libs-others = $(extra-libs)
25 extra-libs-noinstall := $(extra-libs)
27 libsupport-routines = \
28 check \
29 check_addrinfo \
30 check_dns_packet \
31 check_hostent \
32 check_netent \
33 delayed_exit \
34 ignore_stderr \
35 next_to_fault \
36 oom_error \
37 resolv_test \
38 set_fortify_handler \
39 support-xfstat \
40 support-xstat \
41 support_become_root \
42 support_can_chroot \
43 support_capture_subprocess \
44 support_capture_subprocess_check \
45 support_chroot \
46 support_enter_mount_namespace \
47 support_enter_network_namespace \
48 support_format_address_family \
49 support_format_addrinfo \
50 support_format_dns_packet \
51 support_format_herrno \
52 support_format_hostent \
53 support_format_netent \
54 support_isolate_in_subprocess \
55 support_openpty \
56 support_quote_blob \
57 support_record_failure \
58 support_run_diff \
59 support_shared_allocate \
60 support_test_compare_blob \
61 support_test_compare_failure \
62 support_write_file_string \
63 support_test_main \
64 support_test_verify_impl \
65 temp_file \
66 write_message \
67 xaccept \
68 xaccept4 \
69 xasprintf \
70 xbind \
71 xcalloc \
72 xchroot \
73 xclose \
74 xconnect \
75 xdlfcn \
76 xdup2 \
77 xfclose \
78 xfopen \
79 xfork \
80 xftruncate \
81 xgetsockname \
82 xlisten \
83 xlseek \
84 xmalloc \
85 xmemstream \
86 xmkdir \
87 xmmap \
88 xmprotect \
89 xmunmap \
90 xopen \
91 xpipe \
92 xpoll \
93 xpthread_attr_destroy \
94 xpthread_attr_init \
95 xpthread_attr_setdetachstate \
96 xpthread_attr_setguardsize \
97 xpthread_attr_setstacksize \
98 xpthread_barrier_destroy \
99 xpthread_barrier_init \
100 xpthread_barrier_wait \
101 xpthread_cancel \
102 xpthread_check_return \
103 xpthread_cond_wait \
104 xpthread_create \
105 xpthread_detach \
106 xpthread_join \
107 xpthread_mutex_consistent \
108 xpthread_mutex_destroy \
109 xpthread_mutex_init \
110 xpthread_mutex_lock \
111 xpthread_mutex_unlock \
112 xpthread_mutexattr_destroy \
113 xpthread_mutexattr_init \
114 xpthread_mutexattr_setprotocol \
115 xpthread_mutexattr_setpshared \
116 xpthread_mutexattr_setrobust \
117 xpthread_mutexattr_settype \
118 xpthread_once \
119 xpthread_rwlock_init \
120 xpthread_rwlock_rdlock \
121 xpthread_rwlock_unlock \
122 xpthread_rwlock_wrlock \
123 xpthread_rwlockattr_init \
124 xpthread_rwlockattr_setkind_np \
125 xpthread_sigmask \
126 xpthread_spin_lock \
127 xpthread_spin_unlock \
128 xraise \
129 xreadlink \
130 xrealloc \
131 xrecvfrom \
132 xsendto \
133 xsetsockopt \
134 xsigaction \
135 xsignal \
136 xsocket \
137 xstrdup \
138 xstrndup \
139 xsysconf \
140 xunlink \
141 xwaitpid \
142 xwrite \
144 libsupport-static-only-routines := $(libsupport-routines)
145 # Only build one variant of the library.
146 libsupport-inhibit-o := .os
147 ifeq ($(build-shared),yes)
148 libsupport-inhibit-o += .o
149 endif
151 tests = \
152 README-testing \
153 tst-support-namespace \
154 tst-support_capture_subprocess \
155 tst-support_format_dns_packet \
156 tst-support_quote_blob \
157 tst-support_record_failure \
158 tst-test_compare \
159 tst-test_compare_blob \
160 tst-xreadlink \
162 ifeq ($(run-built-tests),yes)
163 tests-special = \
164 $(objpfx)tst-support_record_failure-2.out
166 $(objpfx)tst-support_record_failure-2.out: tst-support_record_failure-2.sh \
167 $(objpfx)tst-support_record_failure
168 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
169 '$(run-program-env)' '$(test-program-prefix-after-env)' \
170 > $@; \
171 $(evaluate-test)
172 endif
174 $(objpfx)tst-support_format_dns_packet: $(common-objpfx)resolv/libresolv.so
176 include ../Rules