The branch main has been updated by olivier: URL: https://cgit.FreeBSD.org/src/commit/?id=75ae7e436eddc541da93bfc97ea08b06be5c2348
commit 75ae7e436eddc541da93bfc97ea08b06be5c2348 Author: Olivier Cochard <[email protected]> AuthorDate: 2023-10-11 10:17:40 +0000 Commit: Olivier Cochard <[email protected]> CommitDate: 2023-10-11 10:24:42 +0000 syslogd: Prevent running tests in parallel They all use the same listening port. Approved by: markj Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D41989 --- usr.sbin/syslogd/tests/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.sbin/syslogd/tests/Makefile b/usr.sbin/syslogd/tests/Makefile index 9f7e151a3938..781730a1102a 100644 --- a/usr.sbin/syslogd/tests/Makefile +++ b/usr.sbin/syslogd/tests/Makefile @@ -1,3 +1,5 @@ ATF_TESTS_SH+= syslogd_test +# Several syslogd listening on the same port prevent parallel operation +TEST_METADATA+= is_exclusive="true" .include <bsd.test.mk>
