git: 47ea2e9edf78 - stable/15 - regex/exhaust_test: Skip flaky 'regcomp_too_big' testcase on all archs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Oct 2025 18:22:52 UTC
The branch stable/15 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=47ea2e9edf787044eff1bda533cb74758631250b
commit 47ea2e9edf787044eff1bda533cb74758631250b
Author: Siva Mahadevan <me@svmhdvn.name>
AuthorDate: 2025-10-03 13:56:32 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-10-20 18:22:37 +0000
regex/exhaust_test: Skip flaky 'regcomp_too_big' testcase on all archs
PR: 259971
Signed-off-by: Siva Mahadevan <me@svmhdvn.name>
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 1ddff51060ad759e35dcc4716b0bdcdb40255862)
---
contrib/netbsd-tests/lib/libc/regex/t_exhaust.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c b/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
index dd2e55635653..25bd23c5a025 100644
--- a/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
+++ b/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
@@ -186,10 +186,8 @@ ATF_TC_BODY(regcomp_too_big, tc)
int e;
struct rlimit limit;
-#if defined(__i386__)
if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
- atf_tc_skip("https://bugs.freebsd.org/237450");
-#endif
+ atf_tc_skip("https://bugs.freebsd.org/259971");
limit.rlim_cur = limit.rlim_max = 256 * 1024 * 1024;
ATF_REQUIRE(setrlimit(RLIMIT_VMEM, &limit) != -1);