opnsense-src/tools/regression/lib/libc/gen/Makefile
Jilles Tjoelker 4b7fb70199 Generate some tests for sh's case command 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.
2010-05-09 16:15:40 +00:00

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