git: 6180a8eaba89 - stable/14 - tests: Serialize kern_descrip_test
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 13 May 2025 12:51:02 UTC
The branch stable/14 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=6180a8eaba89e7dcb609aa89419b9629108a6b87 commit 6180a8eaba89e7dcb609aa89419b9629108a6b87 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2025-05-02 23:59:55 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2025-05-13 12:50:51 +0000 tests: Serialize kern_descrip_test It can trigger failures in unrelated tests when it modifies the maxfiles limit. MFC after: 1 week (cherry picked from commit 46adaf3642cff045b9ac87bd2e8b32124bd66ba2) --- tests/sys/kern/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/sys/kern/Makefile b/tests/sys/kern/Makefile index b6333c9f04f3..46977bedef98 100644 --- a/tests/sys/kern/Makefile +++ b/tests/sys/kern/Makefile @@ -16,6 +16,8 @@ ATF_TESTS_C+= kcov .endif ATF_TESTS_C+= kern_copyin ATF_TESTS_C+= kern_descrip_test +# One test modifies the maxfiles limit, which can cause spurious test failures. +TEST_METADATA.kern_descrip_test+= is_exclusive="true" ATF_TESTS_C+= fdgrowtable_test ATF_TESTS_C+= kill_zombie .if ${MK_OPENSSL} != "no"