git: ab27e232b14c - main - socket tests: Serialize sonewconn_overflow
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 14 Jul 2024 18:30:16 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=ab27e232b14c07317642a2e4c546c9b71bd9c00b
commit ab27e232b14c07317642a2e4c546c9b71bd9c00b
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-07-14 16:12:50 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-07-14 18:29:14 +0000
socket tests: Serialize sonewconn_overflow
It relies on being able inspect the dmesg buffer to see whether the
kernel logged certain messages. If it's interleaved with tests that
generate large amounts of console output (e.g., GELI tests), then it can
fail spuriously.
MFC after: 2 weeks
---
tests/sys/kern/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/sys/kern/Makefile b/tests/sys/kern/Makefile
index c5107ce8f9fe..0b9182b0808c 100644
--- a/tests/sys/kern/Makefile
+++ b/tests/sys/kern/Makefile
@@ -60,6 +60,7 @@ ATF_TESTS_SH+= coredump_phnum_test
ATF_TESTS_SH+= sonewconn_overflow
TEST_METADATA.sonewconn_overflow+= required_programs="python"
TEST_METADATA.sonewconn_overflow+= required_user="root"
+TEST_METADATA.sonewconn_overflow+= is_exclusive="true"
ATF_TESTS_SH+= sendfile_test
ATF_TESTS_SH+= sysctl_security_jail_children
TEST_METADATA.sysctl_security_jail_children+= is_exclusive="true"