Skip to content

Commit

Permalink
Merge pull request #5315 from craigcomstock/CFE-4249
Browse files Browse the repository at this point in the history
CFE-4249: Revert "Re-enabled passopenfile_test after migrating to github actions"
  • Loading branch information
larsewi authored Sep 5, 2023
2 parents 57745c7 + b569d11 commit f30a505
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/unit/passopenfile_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -1286,6 +1286,10 @@ static void test_send_connect_silent(void)

static void test_connect_outlive(void)
{
#ifdef __APPLE__
// FIXME: This test has spurios errors on OS X in travis
return;
#endif
clear_previous_test();
pid_t new_pid = fork();
if (new_pid == 0)
Expand Down Expand Up @@ -1320,6 +1324,10 @@ static void test_connect_outlive(void)

static void test_listen_outlive(void)
{
#ifdef __APPLE__
// FIXME: This test has spurios errors on OS X in travis
return;
#endif
clear_previous_test();
pid_t new_pid = fork();
if (new_pid == 0)
Expand Down

0 comments on commit f30a505

Please sign in to comment.