ecore: and rename the test for Eina_Future to be the only promise test.

This commit is contained in:
Cedric Bail 2018-04-04 16:12:49 -07:00 committed by Cedric BAIL
parent 8563e3780e
commit 0ba3ffda8d
4 changed files with 4 additions and 4 deletions

View File

@ -282,7 +282,7 @@ tests/ecore/ecore_test_animator.c \
tests/ecore/ecore_test_ecore_thread_eina_thread_queue.c \
tests/ecore/ecore_test_ecore_input.c \
tests/ecore/ecore_test_ecore_file.c \
tests/ecore/ecore_test_promise2.c \
tests/ecore/ecore_test_promise.c \
tests/ecore/ecore_test_job.c \
tests/ecore/ecore_test_args.c \
tests/ecore/ecore_suite.h

View File

@ -29,7 +29,7 @@ static const Efl_Test_Case etc[] = {
{ "Ecore_File", ecore_test_ecore_file },
{ "Ecore_Job", ecore_test_ecore_job },
{ "Ecore_Args", ecore_test_ecore_args },
{ "Ecore_Promise2", ecore_test_ecore_promise2 },
{ "Ecore_Promise", ecore_test_ecore_promise },
{ NULL, NULL }
};

View File

@ -17,6 +17,6 @@ void ecore_test_ecore_input(TCase *tc);
void ecore_test_ecore_file(TCase *tc);
void ecore_test_ecore_job(TCase *tc);
void ecore_test_ecore_args(TCase *tc);
void ecore_test_ecore_promise2(TCase *tc);
void ecore_test_ecore_promise(TCase *tc);
#endif /* _ECORE_SUITE_H */

View File

@ -1330,7 +1330,7 @@ promise_shutdown(void)
ecore_init();
}
void ecore_test_ecore_promise2(TCase *tc)
void ecore_test_ecore_promise(TCase *tc)
{
tcase_add_checked_fixture(tc, promise_init, promise_shutdown);
tcase_add_test(tc, efl_test_timeout);