Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jul 2019 18:42:55 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r350219 - head/contrib/netbsd-tests/lib/libc/regex
Message-ID:  <201907221842.x6MIgtLx067644@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Mon Jul 22 18:42:55 2019
New Revision: 350219
URL: https://svnweb.freebsd.org/changeset/base/350219

Log:
  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:
  head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c

Modified: head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c	Mon Jul 22 18:27:17 2019	(r350218)
+++ head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c	Mon Jul 22 18:42:55 2019	(r350219)
@@ -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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907221842.x6MIgtLx067644>