diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-09 13:28:36 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-09 13:28:36 (GMT) |
commit | 2a2f26cd83da8e63ead93999e7a08502f222ffd8 (patch) | |
tree | 70b3ee667a0602c7bcbc3bdd5f3a3f5eeb04f89f /test | |
parent | fa879a1ea3230176d3bfa64212883dd29d6358b3 (diff) | |
parent | 9bac6ca4c581925ed96f8b0d7881607f6bc03883 (diff) | |
download | SCons-2a2f26cd83da8e63ead93999e7a08502f222ffd8.zip SCons-2a2f26cd83da8e63ead93999e7a08502f222ffd8.tar.gz SCons-2a2f26cd83da8e63ead93999e7a08502f222ffd8.tar.bz2 |
Merged in bdbaddog/scons (pull request #460)
PY2/3 changes.
Diffstat (limited to 'test')
-rw-r--r-- | test/SConsignFile/use-dbm.py | 12 | ||||
-rw-r--r-- | test/Win32/bad-drive.py | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/test/SConsignFile/use-dbm.py b/test/SConsignFile/use-dbm.py index 90983b3..129d5b6 100644 --- a/test/SConsignFile/use-dbm.py +++ b/test/SConsignFile/use-dbm.py @@ -34,10 +34,16 @@ _python_ = TestSCons._python_ test = TestSCons.TestSCons() + try: import dbm.ndbm + use_db = 'dbm.ndbm' except ImportError: - test.skip_test('No dbm in this version of Python; skipping test.\n') + try: + import dbm + use_db = 'dbm' + except ImportError: + test.skip_test('No dbm.ndbm in this version of Python; skipping test.\n') test.subdir('subdir') @@ -53,8 +59,8 @@ sys.exit(0) # test.write('SConstruct', """ import sys -import dbm -SConsignFile('.sconsign', dbm) +import %(use_db)s +SConsignFile('.sconsign', %(use_db)s) B = Builder(action = '%(_python_)s build.py $TARGETS $SOURCES') env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'f1.out', source = 'f1.in') diff --git a/test/Win32/bad-drive.py b/test/Win32/bad-drive.py index 5e8e66a..80a36c8 100644 --- a/test/Win32/bad-drive.py +++ b/test/Win32/bad-drive.py @@ -84,7 +84,7 @@ test.write("no_source", "no_source\n") test.run(arguments = 'aaa.out') -test.fail_test(test.read('aaa.out') != "aaa.in\n") +test.must_match('aaa.out', "aaa.in\n", mode='r') # This next test used to provide a slightly different error message: # "scons: *** Do not know how to make File target `%snot_mentioned'. Stop.\n" |