mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 02:42:54 -05:00
These tests fail spuriously when run in parallel, since some of them write a value to a global sysctl, read it back, and expect to see the written value. These tests complete quite quickly in any case. MFC after: 1 week
19 lines
362 B
Makefile
19 lines
362 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
ATF_TESTS_C= sysctl_test
|
|
|
|
.if ${MK_CASPER} != "no"
|
|
LIBADD+= casper
|
|
LIBADD+= cap_sysctl
|
|
CFLAGS+=-DWITH_CASPER
|
|
.endif
|
|
LIBADD+= nv
|
|
|
|
# cap_sysctl tests modify global sysctl values and read them back, so
|
|
# cannot be run in parallel.
|
|
TEST_METADATA.sysctl_test+= required_user="root" \
|
|
is_exclusive=true
|
|
|
|
.include <bsd.test.mk>
|