tests/ecore_wl2: Remove test the ecore_wl2_window_output_find
authorChristopher Michael <cp.michael@samsung.com>
Thu, 9 Jan 2020 15:54:58 +0000 (10:54 -0500)
committerJongmin Lee <jm105.lee@samsung.com>
Thu, 9 Jan 2020 21:15:49 +0000 (06:15 +0900)
This function is internal to EFL so does not need a test case

ref T8016

src/tests/ecore_wl2/ecore_wl2_test_window.c

index b3ed5a7..ca84373 100644 (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);