Only skip test cases sometimes failing in CI when they are running in CI

Suggested by:	jhb
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Li-Wen Hsu 2019-08-01 18:19:16 +00:00
parent 14a345d921
commit 9777e3544a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350512

View File

@ -258,6 +258,7 @@ ATF_TC_BODY(ptrace__parent_sees_exit_after_child_debugger, tc)
int cpipe[2], dpipe[2], status;
char c;
if (atf_tc_get_config_var_as_bool(tc, "ci"))
atf_tc_skip("https://bugs.freebsd.org/239399");
ATF_REQUIRE(pipe(cpipe) == 0);
@ -801,6 +802,7 @@ ATF_TC_BODY(ptrace__follow_fork_both_attached_unrelated_debugger, tc)
pid_t children[2], fpid, wpid;
int cpipe[2], status;
if (atf_tc_get_config_var_as_bool(tc, "ci"))
atf_tc_skip("https://bugs.freebsd.org/239397");
ATF_REQUIRE(pipe(cpipe) == 0);
@ -871,6 +873,7 @@ ATF_TC_BODY(ptrace__follow_fork_child_detached_unrelated_debugger, tc)
pid_t children[2], fpid, wpid;
int cpipe[2], status;
if (atf_tc_get_config_var_as_bool(tc, "ci"))
atf_tc_skip("https://bugs.freebsd.org/239292");
ATF_REQUIRE(pipe(cpipe) == 0);
@ -936,6 +939,7 @@ ATF_TC_BODY(ptrace__follow_fork_parent_detached_unrelated_debugger, tc)
pid_t children[2], fpid, wpid;
int cpipe[2], status;
if (atf_tc_get_config_var_as_bool(tc, "ci"))
atf_tc_skip("https://bugs.freebsd.org/239425");
ATF_REQUIRE(pipe(cpipe) == 0);
@ -2084,6 +2088,7 @@ ATF_TC_BODY(ptrace__PT_KILL_competing_stop, tc)
struct ptrace_lwpinfo pl;
struct sched_param sched_param;
if (atf_tc_get_config_var_as_bool(tc, "ci"))
atf_tc_skip("https://bugs.freebsd.org/220841");
ATF_REQUIRE((fpid = fork()) != -1);