emile: only disable tests timeout on Windows.

This commit is contained in:
Cedric BAIL 2015-04-29 09:50:51 +02:00
parent 32d614639f
commit c0c59bdb19
1 changed files with 2 additions and 0 deletions

View File

@ -92,7 +92,9 @@ main(int argc, char *argv[])
tc = tcase_create(tests[i].name);
tests[i].build(tc);
suite_add_tcase(s, tc);
#ifndef _WIN32
tcase_set_timeout(tc, 0);
#endif
}
sr = srunner_create(s);