mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 16:48:36 -05:00
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)
24 lines
412 B
Makefile
24 lines
412 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/bin/sh/${.CURDIR:T}
|
|
|
|
.PATH: ${.CURDIR:H}
|
|
ATF_TESTS_SH= functional_test
|
|
|
|
FILESDIR= ${TESTSDIR}
|
|
|
|
FILES= env1.0
|
|
FILES+= exitstatus1.0
|
|
FILES+= mail1.0
|
|
FILES+= mail2.0
|
|
FILES+= optind1.0
|
|
FILES+= optind2.0
|
|
FILES+= positional1.0
|
|
FILES+= positional2.0
|
|
FILES+= positional3.0
|
|
FILES+= positional4.0
|
|
FILES+= positional5.0
|
|
FILES+= pwd1.0
|
|
FILES+= pwd2.0
|
|
|
|
.include <bsd.test.mk>
|