Skip to content

Commit

Permalink
Revert "Re-enabled passopenfile_test after migrating to github actions"
Browse files Browse the repository at this point in the history
This reverts commit dbda08a.

Ticket: CFE-4249
Changelog: none
Turns out it is still failing even in github. Already reverted in 3.18.x and 3.21.x.
  • Loading branch information
craigcomstock committed Sep 1, 2023
1 parent 57745c7 commit b569d11
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 b569d11

Please sign in to comment.