tests: reduce array size in safepointer tests

this reduces test runtime by ~1.0s while having no effect on coverage

fix T6836

Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-03-30 13:10:47 -04:00 committed by Stefan Schmidt
parent 3162240921
commit 908ba030bf
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
#include "eina_suite.h"
static int test_array[1024] = { 0, 1, 2, 3, 4, 5, 6, 7 };
static int test_array[128] = { 0, 1, 2, 3, 4, 5, 6, 7 };
static int test_array2[64] = { 8, 9, 10, 11, 12, 13, 14 };
static const void *pointers[EINA_C_ARRAY_LENGTH(test_array) + EINA_C_ARRAY_LENGTH(test_array2)] = { NULL };