disable edbus tests that requires a daemon.

demarchi should fix this after his honeymoon :-P



SVN revision: 82941
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-17 17:00:18 +00:00
parent 6aa4eb7d86
commit c757cba26f
1 changed files with 10 additions and 1 deletions

View File

@ -52,6 +52,13 @@ START_TEST(edbus_test_edbus_main_loop)
}
END_TEST
#if 0
/* TODO: This test assumes an existing dbus-daemon running. It
* shouldn't do this, instead we should launch dbus-daemon ourselves
* and create our private instance, use it and then kill it
* afterwards.
*/
START_TEST(edbus_test_edbus_conn)
{
EDBus_Connection *conn;
@ -109,12 +116,14 @@ START_TEST(edbus_test_edbus_conn_object)
}
END_TEST
#endif
void edbus_test_edbus_init(TCase *tc)
{
tcase_add_test(tc, edbus_test_edbus);
tcase_add_test(tc, edbus_test_edbus_main_loop);
#if 0
tcase_add_test(tc, edbus_test_edbus_conn);
tcase_add_test(tc, edbus_test_edbus_conn_object);
#endif
}