tests/ecore_wl2: Add ecore_wl2_surface tests to build order

ref T8016
This commit is contained in:
Christopher Michael 2019-08-15 15:35:17 -04:00
parent a84cfbae72
commit 10c0e37a72
3 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,7 @@ static const Efl_Test_Case etc[] =
{ "Display", ecore_wl2_test_display },
{ "Window", ecore_wl2_test_window },
{ "Input", ecore_wl2_test_input },
{ "Surface", ecore_wl2_test_surface },
#endif
{ NULL, NULL }
};

View File

@ -8,5 +8,6 @@ void ecore_wl2_test_init(TCase *tc);
void ecore_wl2_test_display(TCase *tc);
void ecore_wl2_test_window(TCase *tc);
void ecore_wl2_test_input(TCase *tc);
void ecore_wl2_test_surface(TCase *tc);
#endif

View File

@ -5,7 +5,8 @@ ecore_wl2_suite_src = [
'ecore_wl2_test_ecore_wl2.c',
'ecore_wl2_test_display.c',
'ecore_wl2_test_window.c',
'ecore_wl2_test_input.c'
'ecore_wl2_test_input.c',
'ecore_wl2_test_surface.c'
]
ecore_wl2_suite = executable('ecore_wl2_suite',