From da0a34e493045ed143f962c605ceb4e0543a9e58 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Sat, 31 Jan 2009 21:31:48 +0000 Subject: [PATCH] check: Increase timeout for the tee test The tee stress test keeps timing out for me on one of the slower machines, so increase the timeout to 3 mins. --- tests/check/elements/tee.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/check/elements/tee.c b/tests/check/elements/tee.c index 538e9aff65..19edab4ad9 100644 --- a/tests/check/elements/tee.c +++ b/tests/check/elements/tee.c @@ -592,6 +592,9 @@ tee_suite (void) Suite *s = suite_create ("tee"); TCase *tc_chain = tcase_create ("general"); + /* Set the timeout to a much larger time - 3 minutes */ + tcase_set_timeout (tc_chain, 180); + suite_add_tcase (s, tc_chain); tcase_add_test (tc_chain, test_num_buffers); tcase_add_test (tc_chain, test_stress);