tests - eo - found eo_signals test is wrong... amazing it passed before
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Fri, 2 Mar 2018 10:13:44 +0000 (19:13 +0900)
committerWonki Kim <wonki_.kim@samsung.com>
Tue, 10 Apr 2018 11:10:46 +0000 (20:10 +0900)
commit185ff70e4ad496e704a81510c25ae5575192ea54
tree65fcf8242d7b8ef1ca6201755b2c95a186a5c4d6
parentd72ae5532763c109bb26f33ef45d23b1756d8065
tests - eo - found eo_signals test is wrong... amazing it passed before

so it was listening for cb adds and dels... and or del of any cb
except the cb add/del catcher was done.. it would fail...

but ... the test actually added other cbs than this ... like:

   efl_event_callback_array_priority_add(obj, _eo_signals_callbacks(),
-100, (void *) 1);

a while array of cb's:

{ EV_A_CHANGED, _eo_signals_a_changed_cb },
{ EV_A_CHANGED, _eo_signals_a_changed_cb2 },
{ EV_A_CHANGED, _eo_signals_a_changed_never },
{ EFL_EVENT_DEL, _eo_signals_efl_del_cb });

none of which were _eo_signals_cb_added_deled. i am amazed it passed
before...

now switch its checks to check for itself and then check for anything
BUT itself...
src/tests/eo/suite/eo_test_general.c