diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-03-19 17:08:52 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-03-19 17:08:52 -0400 |
commit | 2dcb03731ed197af792abf9770e04c9d0774b314 (patch) | |
tree | d6c1292b03ea7969ef8039a1f286efb773a678ae /test | |
parent | 999c4e6dedde0d226b5f7758a59a390047f84f65 (diff) | |
download | mongo-2dcb03731ed197af792abf9770e04c9d0774b314.tar.gz |
Now there's a base-configuration file, the format dump script no longer
needs to configure all of the extension shared libraries itself.
Diffstat (limited to 'test')
-rwxr-xr-x | test/format/s_dumpcmp.sh | 31 |
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 |