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
This commit is contained in:
Li-Wen Hsu 2019-07-22 18:42:55 +00:00
parent 41fc64c259
commit 7e37c475fa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350219

View File

@ -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);