summaryrefslogtreecommitdiff
path: root/test/thread
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-05-28 11:33:03 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-05-28 11:33:03 +0000
commit6aeca4a05cbeee1f6bc30ae5cbd9b4676003e349 (patch)
tree2e2add62e64c9f1d544ee0259ae11c4159e2e1bf /test/thread
parent0c919a6266ee115542e899978662e89a18a0829b (diff)
downloadmongo-6aeca4a05cbeee1f6bc30ae5cbd9b4676003e349.tar.gz
Now that test/fops is split out of the thread code, there's no need for
the error handler to test for ENOENT.
Diffstat (limited to 'test/thread')
-rw-r--r--test/thread/t.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/thread/t.c b/test/thread/t.c
index c7b1726ec5a..908dba1da1f 100644
--- a/test/thread/t.c
+++ b/test/thread/t.c
@@ -189,10 +189,6 @@ handle_error(WT_EVENT_HANDLER *handler, int error, const char *errmsg)
UNUSED(handler);
UNUSED(error);
- /* Ignore complaints about truncation of missing files. */
- if (strcmp(errmsg,
- "session.truncate: __wt: No such file or directory") == 0)
- return (0);
return (fprintf(stderr, "%s\n", errmsg) < 0 ? -1 : 0);
}