12e2df3c36
The new code uses a "test discovery mechanism" to determine what tests are available for execution The test shell can be specified via: kyua test -v test_suites.FreeBSD.bin.sh.test_shell=/path/to/test/sh Sponsored by: EMC / Isilon Storage Division Approved by: jmmv (mentor) Reviewed by: jilles (maintainer)
16 lines
263 B
Makefile
16 lines
263 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/bin/sh
|
|
|
|
TESTS_SUBDIRS+= builtins
|
|
TESTS_SUBDIRS+= errors
|
|
TESTS_SUBDIRS+= execution
|
|
TESTS_SUBDIRS+= expansion
|
|
TESTS_SUBDIRS+= parameters
|
|
TESTS_SUBDIRS+= parser
|
|
TESTS_SUBDIRS+= set-e
|
|
|
|
.include <bsd.test.mk>
|