blob: 682a954e815552447ec5799fa7d23f568ce4ddcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.13 2019/07/28 13:46:45 christos Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/lib/libc/locale
TESTS_C+= t_mbrtowc
TESTS_C+= t_mbstowcs
TESTS_C+= t_mbsnrtowcs
TESTS_C+= t_mbtowc
TESTS_C+= t_wcscspn
TESTS_C+= t_wcspbrk
TESTS_C+= t_wcsrtombs
TESTS_C+= t_wcsspn
TESTS_C+= t_wcstod
TESTS_C+= t_wctomb
TESTS_C+= t_io
TESTS_C+= t_toupper
TESTS_C+= t_digittoint
TESTS_C+= t_sprintf
TESTS_C+= t_wctype
TESTS_C+= t_btowc
TESTS_C+= t_wcscoll
TESTS_C+= t_ducet
TESTS_C+= t_strfmon
COPTS.t_wctomb.c += -Wno-stack-protector
COPTS.t_digittoint.c += -Wno-unused-variable
COPTS.t_btowc.c += -Wno-unused-variable
.include <bsd.test.mk>
|