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.
This commit is contained in:
Jan Schmidt 2009-01-31 21:31:48 +00:00
parent 23ea96655c
commit da0a34e493

View 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);