summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2015-03-20 15:21:15 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2015-03-20 15:21:15 +1100
commitd553f91e06659013970ee9cf357ce435b75ee611 (patch)
tree63e192017786add48207669b5c03282f64c1575e /test
parentf6aee6ab5a4c2cb47872a694843dc2695b0f2d8a (diff)
parent2dcb03731ed197af792abf9770e04c9d0774b314 (diff)
downloadmongo-d553f91e06659013970ee9cf357ce435b75ee611.tar.gz
Merge pull request #1786 from wiredtiger/dump-config
format dump script cleanup
Diffstat (limited to 'test')
-rwxr-xr-xtest/format/s_dumpcmp.sh31
1 files changed, 1 insertions, 30 deletions
diff --git a/test/format/s_dumpcmp.sh b/test/format/s_dumpcmp.sh
index 2760d5e9268..453d42cda32 100755
--- a/test/format/s_dumpcmp.sh
+++ b/test/format/s_dumpcmp.sh
@@ -37,36 +37,7 @@ if test $# -ne 0; then
exit 1
fi
-ext="\"$top/ext/collators/reverse/.libs/libwiredtiger_reverse_collator.so\""
-
-bzip2_ext="$top/ext/compressors/bzip2/.libs/libwiredtiger_bzip2.so"
-if test -e $bzip2_ext ; then
- ext="$ext,\"$bzip2_ext\""
-fi
-lzo_ext=".libs/lzo_compress.so"
-if test -e $lzo_ext ; then
- ext="$ext,\"$lzo_ext\""
-fi
-bzip_raw_ext=".libs/bzip_raw_compress.so"
-if test -e $bzip_raw_ext ; then
- ext="$ext,\"$bzip_raw_ext\""
-fi
-lz4_ext="$top/ext/compressors/lz4/.libs/libwiredtiger_lz4.so"
-if test -e $lz4_ext ; then
- ext="$ext,\"$lz4_ext\""
-fi
-snappy_ext="$top/ext/compressors/snappy/.libs/libwiredtiger_snappy.so"
-if test -e $snappy_ext ; then
- ext="$ext,\"$snappy_ext\""
-fi
-zlib_ext="$top/ext/compressors/zlib/.libs/libwiredtiger_zlib.so"
-if test -e $zlib_ext ; then
- ext="$ext,\"$zlib_ext\""
-fi
-
-config='extensions=['$ext']'
-
-$top/wt -h $home -C "$config" dump $wturi |
+$top/wt -h $home dump $wturi |
sed -e '1,/^Data$/d' > $home/wt_dump
if test "X$bdbdir" = "X"; then