Added a 20 minute timeout to prevent deadlocks and other problems from blocking the test.
This commit is contained in:
parent
8092fcb5a5
commit
a3e3ad2453
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ Suite * check_suite(void) {
|
|||
Suite *s = suite_create("bufferManager");
|
||||
/* Begin a new test */
|
||||
TCase *tc = tcase_create("multithreaded");
|
||||
tcase_set_timeout(tc, 0); // disable timeouts
|
||||
tcase_set_timeout(tc, 1200); // twenty minute timeout
|
||||
/* Sub tests are added, one per line, here */
|
||||
tcase_add_test(tc, pageSingleThreadTest);
|
||||
tcase_add_test(tc, pageSingleThreadWriterTest);
|
||||
|
|
Loading…
Reference in a new issue