tests/eeze: Disable libcheck timeout like we do for the rest of our suites

Recently I have seen that eeze_suite times out more often on jenkins when
being under load. Looking in this revealed that we have been using the default
4s timeout for eeze while almost all others suites had the timeout disabled
already. In eeze there should be no test that would really block and if I find
one I can simply add a specific timeout like we did for eina_barrier.
This commit is contained in:
Stefan Schmidt 2015-04-14 14:44:10 +02:00
parent 9b6db6b3b5
commit a51eceaf6d
1 changed files with 2 additions and 0 deletions

View File

@ -657,6 +657,8 @@ eeze_suite(void)
tcase_add_test(tc, eeze_test_sensor_obj_get);
suite_add_tcase(s, tc);
tcase_set_timeout(tc, 0);
return s;
}