summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2019-12-28 05:18:03 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2019-12-28 05:18:03 (GMT)
commitf70ce3eb6015b6fd6204920e1bdcba607603da33 (patch)
tree34047520a3216fad4a7c9e78bc797f12bd53db1a
parent6eb63f830238784e6065ddb5473ef79b688d530b (diff)
downloadSCons-f70ce3eb6015b6fd6204920e1bdcba607603da33.zip
SCons-f70ce3eb6015b6fd6204920e1bdcba607603da33.tar.gz
SCons-f70ce3eb6015b6fd6204920e1bdcba607603da33.tar.bz2
set tools=[] for test/SConsignFile/use-dbm.py
-rw-r--r--test/SConsignFile/use-dbm.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/SConsignFile/use-dbm.py b/test/SConsignFile/use-dbm.py
index fcf4420..e02346a 100644
--- a/test/SConsignFile/use-dbm.py
+++ b/test/SConsignFile/use-dbm.py
@@ -60,7 +60,8 @@ import sys
import %(use_db)s
SConsignFile('.sconsign', %(use_db)s)
B = Builder(action = r'%(_python_)s build.py $TARGETS $SOURCES')
-env = Environment(BUILDERS = { 'B' : B })
+DefaultEnvironment(tools=[])
+env = Environment(BUILDERS = { 'B' : B }, tools=[])
env.B(target = 'f1.out', source = 'f1.in')
env.B(target = 'f2.out', source = 'f2.in')
env.B(target = 'subdir/f3.out', source = 'subdir/f3.in')
@@ -89,6 +90,7 @@ test.must_match(['subdir', 'f4.out'], "subdir/f4.in\n")
test.up_to_date(arguments = '.')
+
test.must_not_exist(test.workpath('.sconsign'))
test.must_not_exist(test.workpath('.sconsign.dblite'))
test.must_not_exist(test.workpath('subdir', '.sconsign'))