devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a7cc7730afceab996e6616e5412db95048fcb3c1
commit a7cc7730afceab996e6616e5412db95048fcb3c1 Author: Christopher Michael <[email protected]> Date: Mon Jul 22 09:00:17 2019 -0400 tests/ecore_wl2: Add test for ecore_wl2_window_aux_hints_supported_get ref T8016 --- src/tests/ecore_wl2/ecore_wl2_test_window.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/tests/ecore_wl2/ecore_wl2_test_window.c b/src/tests/ecore_wl2/ecore_wl2_test_window.c index bcf264f9c1..64e67d3c47 100644 --- a/src/tests/ecore_wl2/ecore_wl2_test_window.c +++ b/src/tests/ecore_wl2/ecore_wl2_test_window.c @@ -109,6 +109,23 @@ EFL_START_TEST(wl2_window_output_find) } EFL_END_TEST +EFL_START_TEST(wl2_window_aux_hints_supported_get) +{ + Ecore_Wl2_Display *disp; + Ecore_Wl2_Window *win; + Eina_List *l; + + disp = _display_connect(); + ck_assert(disp != NULL); + + win = _window_create(disp); + ck_assert(win != NULL); + + l = ecore_wl2_window_aux_hints_supported_get(win); + ck_assert(l != NULL); +} +EFL_END_TEST + void ecore_wl2_test_window(TCase *tc) { @@ -120,5 +137,6 @@ ecore_wl2_test_window(TCase *tc) tcase_add_test(tc, wl2_window_surface_id_get); tcase_add_test(tc, wl2_window_rotation_get); tcase_add_test(tc, wl2_window_output_find); + tcase_add_test(tc, wl2_window_aux_hints_supported_get); } } --
