10acac81ab
wcstombs(). These tests have already found two libc bugs.
22 lines
306 B
Makefile
22 lines
306 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-mbrtowc \
|
|
test-wcrtomb \
|
|
test-mbsrtowcs \
|
|
test-wcsrtombs \
|
|
test-btowc \
|
|
test-mbrlen \
|
|
test-mbtowc \
|
|
test-wctomb \
|
|
test-mbstowcs \
|
|
test-wcstombs \
|
|
test-mblen
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|