mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
16 lines
392 B
Makefile
16 lines
392 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-arc4random test-fmtcheck test-fmtmsg test-fnmatch \
|
|
test-fpclassify test-ftw test-popen test-posix_spawn test-wordexp
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|
|
|
|
sh-tests: test-fnmatch
|
|
./test-fnmatch -s 1 >../../../bin/sh/builtins/case2.0
|
|
./test-fnmatch -s 2 >../../../bin/sh/builtins/case3.0
|