stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=908ba030bfae73b4f2413023fe8b6b2c84d4d69f

commit 908ba030bfae73b4f2413023fe8b6b2c84d4d69f
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Fri Mar 30 13:10:47 2018 -0400

    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 <ste...@osg.samsung.com>
---
 src/tests/eina/eina_test_safepointer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/eina/eina_test_safepointer.c 
b/src/tests/eina/eina_test_safepointer.c
index 6dfaae49b4..c5b2d83e07 100644
--- a/src/tests/eina/eina_test_safepointer.c
+++ b/src/tests/eina/eina_test_safepointer.c
@@ -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 };
 

-- 


Reply via email to