From f3626114b0c19705da5fbbcf34f09572c5699fd0 Mon Sep 17 00:00:00 2001 From: lwhsu Date: Mon, 22 Jul 2019 18:42:55 +0000 Subject: [PATCH] Temporarily skip lib.libc.regex.exhaust_test.regcomp_too_big and lib.libregex.exhaust_test.regcomp_too_big on i386 as they are flakey on it PR: 237450 Sponsored by: The FreeBSD Foundation --- contrib/netbsd-tests/lib/libc/regex/t_exhaust.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c b/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c index 6f8f2f53214..65dc1e49d05 100644 --- a/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c +++ b/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c @@ -186,6 +186,10 @@ ATF_TC_BODY(regcomp_too_big, tc) int e; struct rlimit limit; +#if defined(__i386__) + atf_tc_skip("https://bugs.freebsd.org/237450"); +#endif + limit.rlim_cur = limit.rlim_max = 256 * 1024 * 1024; ATF_REQUIRE(setrlimit(RLIMIT_VMEM, &limit) != -1); -- 2.45.0