summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2015-04-14 14:44:10 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2015-04-14 14:49:45 +0200
commita51eceaf6d407ad574c6e95c27225ac50fff25fc (patch)
tree0d0e825b2e8d4eb2c1961032cafb33e3acbd11cf
parent9b6db6b3b5005de99448c102258d9ac21944b8e1 (diff)
downloadefl-a51eceaf6d407ad574c6e95c27225ac50fff25fc.tar.gz
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.
-rw-r--r--src/tests/eeze/eeze_suite.c2
1 files changed, 2 insertions, 0 deletions
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;
}