svn commit: r350236 - stable/12/contrib/netbsd-tests/lib/libc/regex

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Jul 23 08:18:09 UTC 2019


Author: lwhsu
Date: Tue Jul 23 08:18:08 2019
New Revision: 350236
URL: https://svnweb.freebsd.org/changeset/base/350236

Log:
  MFC r350219
  
  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

Modified:
  stable/12/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
==============================================================================
--- stable/12/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c	Tue Jul 23 07:56:42 2019	(r350235)
+++ stable/12/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c	Tue Jul 23 08:18:08 2019	(r350236)
@@ -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);
 


More information about the svn-src-stable-12 mailing list