diff options
author | Olivier Cochard <olivier@FreeBSD.org> | 2022-05-23 13:30:25 +0000 |
---|---|---|
committer | Olivier Cochard <olivier@FreeBSD.org> | 2022-05-23 13:44:10 +0000 |
commit | 2d896da92a2a4fd27abeafe04bd2aa1ff74856b8 (patch) | |
tree | 77ad13a2d3b40ca81df845ce6d184c7f1b1d5f53 | |
parent | 1bb3faed29cf1f451bcdc396eaa4f8cc476f9159 (diff) |
tests/unix_passfd: Prevent running them in parallel
Only the send_and_shutdown test is exclusive, but kyua doesn't allow
to prevent parallel execution of a single test.
Approved by: glebius
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D35260
-rw-r--r-- | tests/sys/kern/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/sys/kern/Makefile b/tests/sys/kern/Makefile index 2a224a423a7e..221684842a3e 100644 --- a/tests/sys/kern/Makefile +++ b/tests/sys/kern/Makefile @@ -38,6 +38,7 @@ ATF_TESTS_C+= sysctl_kern_proc ATF_TESTS_C+= sys_getrandom ATF_TESTS_C+= unix_dgram ATF_TESTS_C+= unix_passfd_test +TEST_METADATA.unix_passfd_test+= is_exclusive="true" ATF_TESTS_C+= unix_seqpacket_test TEST_METADATA.unix_seqpacket_test+= timeout="15" ATF_TESTS_C+= unix_socketpair_test |