eo ptr ind: eo_test_general, increase NB_OBJS to cover more

This commit is contained in:
Jérémy Zurcher 2013-05-07 00:34:50 +02:00
parent 94845627b5
commit fc34b73c28
1 changed files with 3 additions and 1 deletions

View File

@ -862,7 +862,7 @@ START_TEST(eo_pointers_indirection)
fail_if(eo_isa(obj1, klass));
eo_unref(obj2);
#define NB_OBJS 100
#define NB_OBJS 10000
unsigned int obj_id;
Eo **objs = calloc(NB_OBJS, sizeof(Eo *));
fail_if(!objs);
@ -889,6 +889,8 @@ START_TEST(eo_pointers_indirection)
/* Deletion of all the objects */
for ( obj_id = 0; obj_id < NB_OBJS; obj_id++)
eo_unref(objs[obj_id]);
/* Just be sure that we trigger an already freed error */
eo_unref(objs[0]);
free(objs);
eo_shutdown();