git: aa94868f5e9a - main - syslogd: Remove is_exclusive metadata from tests
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 23 Dec 2024 15:49:51 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=aa94868f5e9a5998c3277755ac7d4cc19dcd3a25 commit aa94868f5e9a5998c3277755ac7d4cc19dcd3a25 Author: Michal Scigocki <michal.os@hotmail.com> AuthorDate: 2024-12-23 02:53:36 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2024-12-23 15:44:17 +0000 syslogd: Remove is_exclusive metadata from tests - Tests have been updated to use "jail" execution environment, is_exclusive="true" is no longer required. - tests/Makefile update to style.Makefile(5). Reviewed by: markj MFC after: 3 weeks Pull Request: https://github.com/freebsd/freebsd-src/pull/1536 --- usr.sbin/syslogd/tests/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/usr.sbin/syslogd/tests/Makefile b/usr.sbin/syslogd/tests/Makefile index 30972d3fced5..c60709b0531d 100644 --- a/usr.sbin/syslogd/tests/Makefile +++ b/usr.sbin/syslogd/tests/Makefile @@ -1,9 +1,7 @@ -ATF_TESTS_SH+= syslogd_test +ATF_TESTS_SH= syslogd_test # Run in jail with new vnet so we don't need to worry about address conflicts -TEST_METADATA+= execenv="jail" -TEST_METADATA+= execenv_jail_params="vnet=new" -# Several syslogd listening on the same port prevent parallel operation -TEST_METADATA+= is_exclusive="true" -TEST_METADATA+= timeout=20 +TEST_METADATA= execenv="jail" \ + execenv_jail_params="vnet=new" + timeout=20 .include <bsd.test.mk>