mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 15:48:26 -04:00
from the fnmatch tests. I'm committing the generated files because I don't like a build dependency for the sh(1) tests, and they are small and will not change much.
15 lines
324 B
Makefile
15 lines
324 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-fmtcheck test-fnmatch test-fpclassify 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
|