aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2023-03-18 14:57:36 +0000
committerMark Johnston <markj@FreeBSD.org>2023-03-27 12:49:58 +0000
commite6b1b944b5aa1950834f27a8ab9188bcd736844d (patch)
tree3543c82097dcd7d2e24c7da80ae97784299e7568
parent743f4ba7e3bd647f77f0e613de67005ade5db51f (diff)
downloadsrc-e6b1b944b5aa1950834f27a8ab9188bcd736844d.tar.gz
src-e6b1b944b5aa1950834f27a8ab9188bcd736844d.zip
netgraph tests: Serialize
Some tests share names for netgraph nodes, so they cannot be run in parallel. MFC after: 1 week (cherry picked from commit bad8f86843fa34bf4d4d2bfb8183331c02ced87f)
-rw-r--r--tests/sys/netgraph/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/sys/netgraph/Makefile b/tests/sys/netgraph/Makefile
index f397e66a22bc..5a5e2ba13081 100644
--- a/tests/sys/netgraph/Makefile
+++ b/tests/sys/netgraph/Makefile
@@ -7,6 +7,8 @@ BINDIR= ${TESTSDIR}
TAP_TESTS_SH+= ng_macfilter_test
+# Serialize tests since some share netgraph node names.
+TEST_METADATA+= is_exclusive=true
TEST_METADATA.ng_macfilter_test+= required_user="root"
TEST_METADATA.ng_macfilter_test+= required_programs="perl"