diff options
| author | Siva Mahadevan <me@svmhdvn.name> | 2025-10-03 13:56:32 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-10-17 14:24:01 +0000 |
| commit | 1ddff51060ad759e35dcc4716b0bdcdb40255862 (patch) | |
| tree | 65514675491e6973f7993ee808041f3cd8e8e87e | |
| parent | 28c0ef76841bbb322b6e39668e1c8e997c1f8000 (diff) | |
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
| -rw-r--r-- | contrib/netbsd-tests/lib/libc/regex/t_exhaust.c | 4 |
1 files changed, 1 insertions, 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); |
