tests: remove explicit checks for eina mempool tests

Summary:
this was only a temporary measure
Depends on D5916

Reviewers: stefan_schmidt

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5937
This commit is contained in:
Mike Blumenkrantz 2018-04-16 11:46:12 +02:00 committed by Stefan Schmidt
parent 576570ce27
commit 7708154069
1 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@ _efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, co
int can_fork = 0;
#ifdef ENABLE_TIMING_INFO
double tstart, tcstart;
int timing = strcmp(suite_name, "eina_init_module") && _timing_enabled();
int timing = _timing_enabled();
if (timing)
tcstart = tstart = _timing_time_get();
@ -256,7 +256,7 @@ _efl_suite_build_and_run(int argc, const char **argv, const char *suite_name, co
sr = srunner_create(s);
do_fork = _efl_test_fork_has(sr);
if (do_fork)
can_fork = strcmp(suite_name, "Eldbus" /* T6848 */) && strcmp(suite_name, "eina_init_module") && etc[1].test_case /* can't parallelize 1 test */;
can_fork = strcmp(suite_name, "Eldbus" /* T6848 */) && etc[1].test_case /* can't parallelize 1 test */;
for (i = 0; etc[i].test_case; ++i)
{