Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Jan 2024 18:52:21 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2e55256de3e6 - main - route tests: Serialize
Message-ID:  <202401271852.40RIqLdg089801@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401271852.40RIqLdg089801>