diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-10-29 11:00:08 +1100 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2012-10-29 11:00:08 +1100 |
commit | c507009cee0f9a85e1ba3145e9d7d98425ae0229 (patch) | |
tree | 273e276b2494e4ac69077a19e6747ccdb5db4168 | |
parent | c062a33272b94fb1841dad4006e6a1a2e97dc4c3 (diff) | |
download | mongo-c507009cee0f9a85e1ba3145e9d7d98425ae0229.tar.gz |
Respect "compression=none" in test/format.
-rw-r--r-- | test/format/wts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/format/wts.c b/test/format/wts.c index 21c358216ea..24532db56ff 100644 --- a/test/format/wts.c +++ b/test/format/wts.c @@ -145,6 +145,7 @@ wts_open(void) /* Configure compression. */ switch (g.compression) { case COMPRESS_NONE: + break; case COMPRESS_BZIP: p += snprintf(p, (size_t)(end - p), ",block_compressor=\"bzip2\""); |