git: 92baae0fec65 - stable/14 - route tests: Serialize
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 03 Feb 2024 19:11:39 UTC
The branch stable/14 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=92baae0fec65e190c2b32dbdd9f48ab39510ec2e commit 92baae0fec65e190c2b32dbdd9f48ab39510ec2e Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2023-03-25 19:59:20 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2024-02-03 19:10:50 +0000 route tests: Serialize These tests reuse jail names and so cannot run in parallel. MFC after: 1 week (cherry picked from commit 2e55256de3e6193b5073f9774362b06ce690e482) --- 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>