Added a 10 minute timeout.
This commit is contained in:
parent
8bb5192a41
commit
e81bf95553
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ Suite * check_suite(void) {
|
||||||
Suite *s = suite_create("transactional");
|
Suite *s = suite_create("transactional");
|
||||||
/* Begin a new test */
|
/* Begin a new test */
|
||||||
TCase *tc = tcase_create("transactional_smokeTest");
|
TCase *tc = tcase_create("transactional_smokeTest");
|
||||||
tcase_set_timeout(tc, 0); // disable timeouts
|
tcase_set_timeout(tc, 600); // ten minute timeout
|
||||||
|
|
||||||
/* Sub tests are added, one per line, here */
|
/* Sub tests are added, one per line, here */
|
||||||
tcase_add_test(tc, transactional_blobSmokeTest);
|
tcase_add_test(tc, transactional_blobSmokeTest);
|
||||||
|
|
Loading…
Reference in a new issue