Elm test web: Correctly disable the web tests.

This gets rid of some clang warnings.
This commit is contained in:
Tom Hacohen 2016-04-12 15:39:36 +01:00
parent f14305024e
commit b4da02cac2
1 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@
START_TEST (elm_atspi_role_get)
{
#if 0
Evas_Object *win, *web;
Elm_Atspi_Role role;
@ -21,10 +22,11 @@ START_TEST (elm_atspi_role_get)
ck_assert(role == ELM_ATSPI_ROLE_HTML_CONTAINER);
elm_shutdown();
#endif
}
END_TEST
void elm_test_web(TCase *tc)
{
/* tcase_add_test(tc, elm_atspi_role_get); */
tcase_add_test(tc, elm_atspi_role_get);
}