Set appropriate timeout.
This commit is contained in:
parent
907a24b68e
commit
4d2e70f9f3
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ Suite * check_suite(void) {
|
||||||
Suite *s = suite_create("io");
|
Suite *s = suite_create("io");
|
||||||
/* Begin a new test */
|
/* Begin a new test */
|
||||||
TCase *tc = tcase_create("io_test");
|
TCase *tc = tcase_create("io_test");
|
||||||
tcase_set_timeout(tc, 600); // ten minute timeout
|
// tcase_set_timeout(tc, 1800); // thirty minute timeout
|
||||||
|
|
||||||
/* Sub tests are added, one per line, here */
|
/* Sub tests are added, one per line, here */
|
||||||
tcase_add_test(tc, io_memoryTest);
|
tcase_add_test(tc, io_memoryTest);
|
||||||
|
|
Loading…
Reference in a new issue