svn commit: r352227 - head/contrib/netbsd-tests/lib/libc/regex

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Sep 11 18:40:06 UTC 2019


Author: lwhsu
Date: Wed Sep 11 18:40:05 2019
New Revision: 352227
URL: https://svnweb.freebsd.org/changeset/base/352227

Log:
  Only skip problematic test in CI env.
  
  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	Wed Sep 11 18:08:40 2019	(r352226)
+++ head/contrib/netbsd-tests/lib/libc/regex/t_exhaust.c	Wed Sep 11 18:40:05 2019	(r352227)
@@ -187,7 +187,8 @@ ATF_TC_BODY(regcomp_too_big, tc)
 	struct rlimit limit;
 
 #if defined(__i386__)
-	atf_tc_skip("https://bugs.freebsd.org/237450");
+	if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+		atf_tc_skip("https://bugs.freebsd.org/237450");
 #endif
 
 	limit.rlim_cur = limit.rlim_max = 256 * 1024 * 1024;


More information about the svn-src-head mailing list