From: Mike Blumenkrantz Date: Fri, 30 Mar 2018 19:01:04 +0000 (-0400) Subject: tests: remove 9900 loop iterations from eina_test_file_thread X-Git-Tag: upstream/1.21.0~1450 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4eb100fbeb03dfe656e180bfd1474ba686ba5ff0;p=platform%2Fupstream%2Fefl.git tests: remove 9900 loop iterations from eina_test_file_thread no changes in coverage fix T6842 Reviewed-by: Stefan Schmidt --- diff --git a/src/tests/eina/eina_test_file.c b/src/tests/eina/eina_test_file.c index 2a53573..5810d85 100644 --- a/src/tests/eina/eina_test_file.c +++ b/src/tests/eina/eina_test_file.c @@ -489,7 +489,7 @@ _eina_test_file_thread(void *data EINA_UNUSED, Eina_Thread t EINA_UNUSED) Eina_File *f; unsigned int i; - for (i = 0; i < 10000; ++i) + for (i = 0; i < 100; ++i) { f = eina_file_open("/bin/sh", EINA_FALSE); fail_if(!f);