jackdanielz pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=203b6295e930da66a05f76be9a058b556af2c711

commit 203b6295e930da66a05f76be9a058b556af2c711
Author: Daniel Zaoui <daniel.za...@samsung.com>
Date:   Sun Sep 29 09:34:03 2013 +0300

    Reduce the number of deleted objects to reduce the number of expected error 
prints
---
 src/tests/eo/suite/eo_test_general.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/tests/eo/suite/eo_test_general.c 
b/src/tests/eo/suite/eo_test_general.c
index ceeed24..a9d0b2f 100644
--- a/src/tests/eo/suite/eo_test_general.c
+++ b/src/tests/eo/suite/eo_test_general.c
@@ -878,15 +878,15 @@ START_TEST(eo_pointers_indirection)
         if(!eo_isa(objs[obj_id], klass))
           fail_if(!eo_isa(objs[obj_id], klass));
      }
-   /* Deletion of half of the objects */
-   for ( obj_id = 0; obj_id < NB_OBJS; obj_id+=2)
+   /* Deletion of a few objects */
+   for ( obj_id = 0; obj_id < NB_OBJS; obj_id+=2000)
      {
         eo_unref(objs[obj_id]);
         if(eo_isa(objs[obj_id], klass))
           fail_if(eo_isa(objs[obj_id], klass));
      }
-   /* Creation of half of the objects */
-   for ( obj_id = 0; obj_id < NB_OBJS; obj_id+=2)
+   /* Creation of the deleted objects */
+   for ( obj_id = 0; obj_id < NB_OBJS; obj_id+=2000)
      {
         objs[obj_id] = eo_add(klass, NULL);
         if(!objs[obj_id])

-- 


Reply via email to