From 22a48925b17b0fadcac8cfc45dd5ef5bc124d86b Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Wed, 16 Jan 2013 18:16:14 +0000 Subject: [PATCH] ecore_suite: disable ecore_con tests that are bogus for an unit test. these are more like examples or test applications than an unit test. Needs to re-do. SVN revision: 82893 --- src/tests/ecore/ecore_test_ecore_con.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/tests/ecore/ecore_test_ecore_con.c b/src/tests/ecore/ecore_test_ecore_con.c index b4513c2d4e..5a0e9a57d0 100644 --- a/src/tests/ecore/ecore_test_ecore_con.c +++ b/src/tests/ecore/ecore_test_ecore_con.c @@ -10,6 +10,11 @@ #include #include +#if 0 +/* TODO: this test is broken as it starts a server, but not a client. + * There should be two threads, one with server, another with client, + * they should communicate and then exit with failure or success. + */ Eina_Bool _add(void *data, int type EINA_UNUSED, void *ev) { @@ -238,6 +243,7 @@ START_TEST(ecore_test_ecore_con_server) fail_if(ret != 0); } END_TEST +#endif START_TEST(ecore_test_ecore_con_init) { @@ -254,5 +260,7 @@ END_TEST void ecore_test_ecore_con(TCase *tc) { tcase_add_test(tc, ecore_test_ecore_con_init); +#if 0 tcase_add_test(tc, ecore_test_ecore_con_server); +#endif }