summaryrefslogtreecommitdiff
path: root/test/suite/test_compress01.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/test_compress01.py')
-rw-r--r--test/suite/test_compress01.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/suite/test_compress01.py b/test/suite/test_compress01.py
index c68b7e12edc..84f57c66b3c 100644
--- a/test/suite/test_compress01.py
+++ b/test/suite/test_compress01.py
@@ -97,7 +97,8 @@ class test_compress01_base(wttest.WiredTigerTestCase):
testdir = os.path.dirname(__file__)
import run
extdir = os.path.join(run.wt_builddir, 'ext/compressors')
- extfile = os.path.join(extdir, name, '.libs', name + '.so')
+ extfile = os.path.join(
+ extdir, name, '.libs', 'libwiredtiger_' + name + '.so')
if not os.path.exists(extfile):
self.skipTest('Extension "' + extfile + '" not built')
return 'extensions=["' + extfile + '"]'
@@ -130,15 +131,15 @@ class compress01_tests(object):
class test_compress01_1_nop(test_compress01_base, compress01_tests):
def __init__(self, testname):
- test_compress01_base.__init__(self, testname, 'nop_compress', 'nop')
+ test_compress01_base.__init__(self, testname, 'nop', 'nop')
class test_compress01_2_bz(test_compress01_base, compress01_tests):
def __init__(self, testname):
- test_compress01_base.__init__(self, testname, 'bzip2_compress', 'bz')
+ test_compress01_base.__init__(self, testname, 'bzip2', 'bz')
class test_compress01_3_sn(test_compress01_base, compress01_tests):
def __init__(self, testname):
- test_compress01_base.__init__(self, testname, 'snappy_compress', 'sn')
+ test_compress01_base.__init__(self, testname, 'snappy', 'sn')
if __name__ == '__main__':