raster pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=04c553525086fd212c8a27e38c135a27cba42ba0

commit 04c553525086fd212c8a27e38c135a27cba42ba0
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Tue Oct 20 14:05:05 2015 +0900

    elm test - make automated test betetr by auto-exiting after 50 bounces
---
 src/bin/test_genlist.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/bin/test_genlist.c b/src/bin/test_genlist.c
index cf77362..2d6d6ce 100644
--- a/src/bin/test_genlist.c
+++ b/src/bin/test_genlist.c
@@ -304,11 +304,14 @@ _bounce_cb(void *data)
 {
    Bounce *bounce = data;
    bounce->state++;
-   if (bounce->state > 1) bounce->state = 0;
-   if (bounce->state == 1)
+   if (bounce->state & 0x1)
      elm_genlist_item_bring_in(bounce->it2, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE);
    else
      elm_genlist_item_bring_in(bounce->it1, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE);
+   if (bounce->state > 50)
+     {
+        if (getenv("ELM_TEST_AUTOBOUNCE")) elm_exit();
+     }
    return EINA_TRUE;
 }
 

-- 


Reply via email to