check: Fix comment about the timeout for generic stress test.
authorJan Schmidt <thaytan@noraisin.net>
Sat, 31 Jan 2009 21:32:36 +0000 (21:32 +0000)
committerJan Schmidt <thaytan@noraisin.net>
Sat, 31 Jan 2009 21:35:22 +0000 (21:35 +0000)
Setting the timeout to 0 makes it infinite, so fix the comment
above accordingly.

tests/check/pipelines/stress.c

index 9e349ba..30d3b53 100644 (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);