1# $FreeBSD$
2
3TESTS=	test-arc4random test-fmtcheck test-fmtmsg test-fnmatch \
4	test-fpclassify test-ftw test-popen test-posix_spawn test-wordexp
5
6.PHONY: tests
7tests: ${TESTS}
8	for p in ${TESTS}; do ${.OBJDIR}/$$p; done
9
10.PHONY: clean
11clean:
12	-rm -f ${TESTS}
13
14sh-tests: test-fnmatch
15	./test-fnmatch -s 1 >../../../bin/sh/builtins/case2.0
16	./test-fnmatch -s 2 >../../../bin/sh/builtins/case3.0
17