git: 75ae7e436edd - main - syslogd: Prevent running tests in parallel

From: Olivier Cochard <olivier_at_FreeBSD.org>
Date: Wed, 11 Oct 2023 10:25:28 UTC
The branch main has been updated by olivier:

URL: https://cgit.FreeBSD.org/src/commit/?id=75ae7e436eddc541da93bfc97ea08b06be5c2348

commit 75ae7e436eddc541da93bfc97ea08b06be5c2348
Author:     Olivier Cochard <olivier@FreeBSD.org>
AuthorDate: 2023-10-11 10:17:40 +0000
Commit:     Olivier Cochard <olivier@FreeBSD.org>
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>