aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2021-02-04 17:56:54 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2021-03-17 09:56:40 +0000
commit2f0161f405d74974f9ac74d8502de9ce6ba31728 (patch)
tree4a3ce17bd45c9715905f48e4ad2204a0cc718f44
parentda80e76821e7dc7ca2b87e711399c198d578604e (diff)
downloadsrc-2f0161f405d74974f9ac74d8502de9ce6ba31728.tar.gz
src-2f0161f405d74974f9ac74d8502de9ce6ba31728.zip
usr.bin/jail: Fix tests when using kyua -v parallelism=N
These tests create jails with the same name, so they cannot be run in parallel. Reviewed By: lwhsu Differential Revision: https://reviews.freebsd.org/D28482 (cherry picked from commit 72692dfdfe7b4ffd894afd67959651ca1b01a105)
-rw-r--r--usr.sbin/jail/tests/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/jail/tests/Makefile b/usr.sbin/jail/tests/Makefile
index 24c0c6c05194..216a5a581980 100644
--- a/usr.sbin/jail/tests/Makefile
+++ b/usr.sbin/jail/tests/Makefile
@@ -5,5 +5,7 @@ PACKAGE= tests
ATF_TESTS_SH+= jail_basic_test
${PACKAGE}FILES+= commands.jail.conf
+# The different test cases create jails with the same name.
+TEST_METADATA+= is_exclusive="true"
.include <bsd.test.mk>