tests/eina: disable eina debug signal handling test in non-fork mode

Summary: signal tests can only be used in fork mode or else they just fail

Reviewers: devilhorns

Subscribers: cedric, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6477
This commit is contained in:
Mike Blumenkrantz 2018-07-03 12:46:49 -04:00 committed by Chris Michael
parent 3c8bc31e75
commit dca39ebec1
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ void
eina_test_debug(TCase *tc)
{
#ifndef _WIN32
tcase_add_test_raise_signal(tc, eina_test_debug_sighandler, SIGPROF);
if (!eina_streq(getenv("CK_FORK"), "no"))
tcase_add_test_raise_signal(tc, eina_test_debug_sighandler, SIGPROF);
#endif
}