stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ab37ca4d7b4e8425ffd73611b8b2812bf8c27e10
commit ab37ca4d7b4e8425ffd73611b8b2812bf8c27e10 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Mar 30 17:08:48 2018 -0400 tests: increase step sizes for eina_fp_div and eina_fp_mul tests fix T6841 Reviewed-by: Stefan Schmidt <ste...@osg.samsung.com> --- src/tests/eina/eina_test_fp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tests/eina/eina_test_fp.c b/src/tests/eina/eina_test_fp.c index 786423ca04..b9f61efe01 100644 --- a/src/tests/eina/eina_test_fp.c +++ b/src/tests/eina/eina_test_fp.c @@ -93,9 +93,9 @@ EFL_START_TEST(eina_fp_mul) double maxdelta_per = 0; dl1 = 10; - step1 = 0.001; + step1 = 0.007; dl2 = 1000; - step2 = 0.01; + step2 = 0.061; for (dc1 = 0; dc1 < dl1; dc1 += step1) { @@ -143,9 +143,9 @@ EFL_START_TEST(eina_fp_div) double maxdelta_per = 0; dl1 = 10; - step1 = 0.001; + step1 = 0.007; dl2 = 1000; - step2 = 0.01; + step2 = 0.061; for (dc1 = 0; dc1 < dl1; dc1 += step1) { --