]> xenbits.xensource.com Git - freebsd.git/commitdiff
Only skip problematic test in CI env.
authorlwhsu <lwhsu@FreeBSD.org>
Wed, 11 Sep 2019 18:40:05 +0000 (18:40 +0000)
committerlwhsu <lwhsu@FreeBSD.org>
Wed, 11 Sep 2019 18:40:05 +0000 (18:40 +0000)
PR: 237450
Sponsored by: The FreeBSD Foundation

contrib/netbsd-tests/lib/libc/regex/t_exhaust.c

index 65dc1e49d05cafd59884bd1d5e09fee8212b052d..dd2e55635653f888c4da312fb3ab1acec9da740e 100644 (file)
@@ -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;