From 14eb903ba31987d24357abd05923677d194fedae Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Sun, 24 Feb 2019 17:25:31 +0300 Subject: [PATCH] Revert "test: avoid regress hanging in macOS" After we started to use kill() over raise() everything should work just fine. This reverts commit a86f89d333d870e6714bd28c695ba1774df3d7f5. Fixed-in: 728c5dc1 ("Use kill() over raise() for raising the signal (fixes osx 10.14 with kqueue)") Fixes: #747 --- test/regress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress.c b/test/regress.c index 8b5a6bac..1c19aad4 100644 --- a/test/regress.c +++ b/test/regress.c @@ -3459,7 +3459,7 @@ struct testcase_t main_testcases[] = { BASIC(active_by_fd, TT_FORK|TT_NEED_BASE|TT_NEED_SOCKETPAIR), -#if !defined(_WIN32) && !defined(__APPLE__) +#ifndef _WIN32 LEGACY(fork, TT_ISOLATED), #endif #ifdef EVENT__HAVE_PTHREADS -- 2.40.0