From: Jan Schmidt Date: Sat, 31 Jan 2009 21:32:36 +0000 (+0000) Subject: check: Fix comment about the timeout for generic stress test. X-Git-Tag: RELEASE-0.10.23~212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f9b066019dd297edda7eff7e8dc1a9e7bd08232;p=platform%2Fupstream%2Fgstreamer.git check: Fix comment about the timeout for generic stress test. Setting the timeout to 0 makes it infinite, so fix the comment above accordingly. --- diff --git a/tests/check/pipelines/stress.c b/tests/check/pipelines/stress.c index 9e349ba..30d3b53 100644 --- a/tests/check/pipelines/stress.c +++ b/tests/check/pipelines/stress.c @@ -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);