check: Increase timeout for the tee test
authorJan Schmidt <thaytan@noraisin.net>
Sat, 31 Jan 2009 21:31:48 +0000 (21:31 +0000)
committerJan Schmidt <thaytan@noraisin.net>
Sat, 31 Jan 2009 21:35:21 +0000 (21:35 +0000)
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

index 538e9af..19edab4 100644 (file)
@@ -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);