git: 2e55256de3e6 - main - route tests: Serialize

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Sat, 27 Jan 2024 18:52:21 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=2e55256de3e6193b5073f9774362b06ce690e482

commit 2e55256de3e6193b5073f9774362b06ce690e482
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-03-25 19:59:20 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-01-27 18:51:14 +0000

    route tests: Serialize
    
    These tests reuse jail names and so cannot run in parallel.
    
    MFC after:      1 week
---
 sbin/route/tests/Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sbin/route/tests/Makefile b/sbin/route/tests/Makefile
index 1ae964693ff4..23e5ecb79143 100644
--- a/sbin/route/tests/Makefile
+++ b/sbin/route/tests/Makefile
@@ -1,10 +1,10 @@
 
 PACKAGE=	tests
 
-ATF_TESTS_SH+=	\
-        basic
+ATF_TESTS_SH+=	basic
+# Tests reuse jail names and so cannot run in parallel.
+TEST_METADATA.basic+=	is_exclusive=true
 
-${PACKAGE}FILES+=	\
-		utils.subr
+${PACKAGE}FILES+= utils.subr
 
 .include <bsd.test.mk>