summaryrefslogtreecommitdiff
path: root/test/huge
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-12-20 08:42:26 -0500
committerKeith Bostic <keith@wiredtiger.com>2013-12-20 08:42:26 -0500
commit8ed026229dc7668511825502fedb25dc247d8c92 (patch)
tree06acf92460984c35f82b5be4037fe2029215ac7e /test/huge
parentf8161f2c6b6737616d119fcc2f18f7623c779bb8 (diff)
downloadmongo-8ed026229dc7668511825502fedb25dc247d8c92.tar.gz
note if big key or data in output
Diffstat (limited to 'test/huge')
-rw-r--r--test/huge/huge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/huge/huge.c b/test/huge/huge.c
index cd00a2577aa..9ef7f061aee 100644
--- a/test/huge/huge.c
+++ b/test/huge/huge.c
@@ -107,11 +107,11 @@ run(CONFIG *cp, int bigkey, size_t bytes)
big[bytes] = '\0';
- printf("%zu" "%s: %s %s\n",
+ printf("%zu" "%s: %s %s big %s\n",
bytes < MEGABYTE ? bytes :
(bytes < GIGABYTE ? bytes / MEGABYTE : bytes / GIGABYTE),
bytes < MEGABYTE ? "B" : (bytes < GIGABYTE ? "MB" : "GB"),
- cp->uri, cp->config);
+ cp->uri, cp->config, bigkey ? "key" : "value");
(void)system("rm -rf WT_TEST && mkdir WT_TEST");