git: c678572e7675 - main - Prevent running sigwait tests in parallel
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 17 May 2022 21:36:52 UTC
The branch main has been updated by olivier (ports committer): URL: https://cgit.FreeBSD.org/src/commit/?id=c678572e7675c8de6d19fa925284a50f58358f35 commit c678572e7675c8de6d19fa925284a50f58358f35 Author: Olivier Cochard <olivier@FreeBSD.org> AuthorDate: 2022-05-17 21:28:56 +0000 Commit: Olivier Cochard <olivier@FreeBSD.org> CommitDate: 2022-05-17 21:33:39 +0000 Prevent running sigwait tests in parallel test_sig_discard_ign_* could not run at the same time. Approved by: dchagin Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D35236 --- tests/sys/kern/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/sys/kern/Makefile b/tests/sys/kern/Makefile index 3f0e40d6a0dd..2a224a423a7e 100644 --- a/tests/sys/kern/Makefile +++ b/tests/sys/kern/Makefile @@ -29,6 +29,7 @@ ATF_TESTS_C+= reaper ATF_TESTS_C+= sched_affinity ATF_TESTS_C+= sigaltstack ATF_TESTS_C+= sigwait +TEST_METADATA.sigwait+= is_exclusive="true" .if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH:Mpowerpc*} == "" ATF_TESTS_C+= subr_physmem_test .endif