diff options
author | Susan LoVerso <sue@mongodb.com> | 2016-03-14 14:21:30 -0400 |
---|---|---|
committer | Susan LoVerso <sue@mongodb.com> | 2016-03-14 14:21:30 -0400 |
commit | c7deca02e486d7c2ac3d8044b038997f20595d69 (patch) | |
tree | 1cd5e3d6b7020740e9d9b7cdc2d6585c7d37e584 | |
parent | e3c5559f53c270f1161b1564da37b4f50f7bdf57 (diff) | |
download | mongo-c7deca02e486d7c2ac3d8044b038997f20595d69.tar.gz |
WT-2463 Add more information to error message.
-rw-r--r-- | test/manydbs/manydbs.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/manydbs/manydbs.c b/test/manydbs/manydbs.c index 60881694d6a..1d7ee798f2f 100644 --- a/test/manydbs/manydbs.c +++ b/test/manydbs/manydbs.c @@ -243,9 +243,12 @@ main(int argc, char *argv[]) */ if (idle && cond_reset != cond_reset_orig[i]) testutil_die(ERANGE, - "condvar reset on idle connection"); + "condvar reset on idle connection %d of %" PRIu64, + i, cond_reset); if (!idle && cond_reset > cond_wait / 20) - testutil_die(ERANGE, "condvar reset exceeds 5%"); + testutil_die(ERANGE, "connection %d condvar reset %" + PRIu64 " exceeds 5%% of %" PRIu64, + i, cond_reset, cond_wait); testutil_check(conn[i]->close(conn[i], NULL)); } |