Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jul 2019 08:18:09 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r350236 - stable/12/contrib/netbsd-tests/lib/libc/regex
Message-ID:  <201907230818.x6N8I9nC053808@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



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