comparison tests/test-map.c @ 485:3ff1fe64d0cd

core: window -> mlk_window
author David Demelier <markand@malikania.fr>
date Tue, 28 Feb 2023 08:40:35 +0100
parents 5729efd23286
children d6757c30658e
comparison
equal deleted inserted replaced
484:f14b8290b3ce 485:3ff1fe64d0cd
132 * This test opens graphical images and therefore need to initialize a 132 * This test opens graphical images and therefore need to initialize a
133 * window and all of the API. As tests sometime run on headless machine 133 * window and all of the API. As tests sometime run on headless machine
134 * we will skip if it fails to initialize. 134 * we will skip if it fails to initialize.
135 */ 135 */
136 136
137 if (mlk_core_init("fr.malikania", "test") < 0 || window_open("test-map", 100, 100) < 0) 137 if (mlk_core_init("fr.malikania", "test") < 0 || mlk_window_open("test-map", 100, 100) < 0)
138 return 1; 138 return 1;
139 139
140 DT_RUN(test_basics_sample); 140 DT_RUN(test_basics_sample);
141 DT_RUN(test_error_title); 141 DT_RUN(test_error_title);
142 DT_RUN(test_error_columns); 142 DT_RUN(test_error_columns);