From a51eceaf6d407ad574c6e95c27225ac50fff25fc Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 14 Apr 2015 14:44:10 +0200 Subject: [PATCH] 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. --- src/tests/eeze/eeze_suite.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/eeze/eeze_suite.c b/src/tests/eeze/eeze_suite.c index 904dd2597e..b4fe8866f8 100644 --- a/src/tests/eeze/eeze_suite.c +++ b/src/tests/eeze/eeze_suite.c @@ -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; }