mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 23:04:36 -04:00
18 lines
280 B
Makefile
18 lines
280 B
Makefile
|
|
.include <bsd.compiler.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/sys
|
|
|
|
ATF_TESTS_C= arb_test \
|
|
bitset_test \
|
|
bitstring_test \
|
|
qmath_test \
|
|
rb_test \
|
|
splay_test \
|
|
time_test
|
|
|
|
.if ${COMPILER_TYPE} == "gcc"
|
|
CFLAGS.bitstring_test= -fno-strict-overflow
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|