mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
Formerly, in this case an error was returned but the pid was also returned to the application, requiring the application to use unspecified behaviour (the returned pid in error situations) to avoid zombies. Now, reap the zombie and do not return the pid. MFC after: 2 weeks
15 lines
341 B
Makefile
15 lines
341 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-fmtcheck test-fnmatch test-fpclassify 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
|