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;
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to