check: Fix comment about the timeout for generic stress test.

Setting the timeout to 0 makes it infinite, so fix the comment
above accordingly.
This commit is contained in:
Jan Schmidt 2009-01-31 21:32:36 +00:00
parent da0a34e493
commit 6f9b066019

View file

@ -121,7 +121,7 @@ stress_suite (void)
Suite *s = suite_create ("stress");
TCase *tc_chain = tcase_create ("linear");
/* time out after 20s, not the default 3 */
/* Completely disable timeout for this test */
tcase_set_timeout (tc_chain, 0);
suite_add_tcase (s, tc_chain);