tests/ecore_wl2: Remove test the ecore_wl2_window_output_find

This function is internal to EFL so does not need a test case

ref T8016
This commit is contained in:
Christopher Michael 2020-01-09 10:54:58 -05:00
parent 64dacb3d07
commit 83a2916043
1 changed files with 0 additions and 18 deletions

View File

@ -84,23 +84,6 @@ EFL_START_TEST(wl2_window_rotation)
}
EFL_END_TEST
EFL_START_TEST(wl2_window_output_find)
{
Ecore_Wl2_Display *disp;
Ecore_Wl2_Window *win;
Ecore_Wl2_Output *out;
disp = _display_connect();
ck_assert(disp != NULL);
win = _window_create(disp);
ck_assert(win != NULL);
out = ecore_wl2_window_output_find(win);
ck_assert(out != NULL);
}
EFL_END_TEST
EFL_START_TEST(wl2_window_aux_hints_supported_get)
{
Ecore_Wl2_Display *disp;
@ -520,7 +503,6 @@ ecore_wl2_test_window(TCase *tc)
tcase_add_test(tc, wl2_window_new);
tcase_add_test(tc, wl2_window_surface_test);
tcase_add_test(tc, wl2_window_rotation);
tcase_add_test(tc, wl2_window_output_find);
if (getenv("E_START"))
tcase_add_test(tc, wl2_window_aux_hints_supported_get);
tcase_add_test(tc, wl2_window_display_get);