Hi Marcel, Can you explain to me why this commit is needed ?? The test compiled and executed correctly when I tested it here ... so "fix compilation" is a little confusing....
Cheers, dh On 1/23/20 5:18 AM, Marcel Hollerbach wrote: bu5hm4n pushed a commit to branch master. [1]http://git.enlightenment.org/core/efl.git/commit/?id=a8e45ab62f400d2938b0dabc a537f13f1f67bbee commit a8e45ab62f400d2938b0dabca537f13f1f67bbee Author: Marcel Hollerbach [2]<[email protected]> Date: Thu Jan 23 11:14:33 2020 +0100 ecore_wl2: fix compilation --- src/tests/ecore_wl2/ecore_wl2_test_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/ecore_wl2/ecore_wl2_test_input.c b/src/tests/ecore_wl2/ec ore_wl2_test_input.c index 2802ee6c00..2eb3aa6b38 100644 --- a/src/tests/ecore_wl2/ecore_wl2_test_input.c +++ b/src/tests/ecore_wl2/ecore_wl2_test_input.c @@ -218,8 +218,8 @@ EFL_START_TEST(wl2_input_keyboard_repeat) ecore_wl2_input_keyboard_repeat_set(input, 2.0, 2.0); ecore_wl2_input_keyboard_repeat_get(input, &rate, &delay); - ck_assert_double_ne(rate, 2.0); - ck_assert_double_ne(delay, 2.0); + ck_assert(!EINA_DBL_EQ(rate, 2.0)); + ck_assert(!EINA_DBL_EQ(delay, 2.0)); } } References 1. http://git.enlightenment.org/core/efl.git/commit/?id=a8e45ab62f400d2938b0dabca537f13f1f67bbee 2. mailto:[email protected] _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
