tests: remove 9900 loop iterations from eina_test_file_thread

no changes in coverage

fix T6842

Reviewed-by: Stefan Schmidt <stefan@osg.samsung.com>
This commit is contained in:
Mike Blumenkrantz 2018-03-30 15:01:04 -04:00 committed by Stefan Schmidt
parent e6c8bf7fbf
commit 910db08a6b
1 changed files with 1 additions and 1 deletions

View File

@ -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);