summaryrefslogtreecommitdiffstats
path: root/test/Repository
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2020-03-22 03:05:46 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2020-04-09 20:52:30 (GMT)
commitd3acf86b170be29de6b0328b063f5451e1f7e917 (patch)
tree423e818b777ef18535117c2fdd3b04a877f5d9fe /test/Repository
parent5e8c9536ec9f76901fcc02cc716fd9ccf2d9aaa5 (diff)
downloadSCons-d3acf86b170be29de6b0328b063f5451e1f7e917.zip
SCons-d3acf86b170be29de6b0328b063f5451e1f7e917.tar.gz
SCons-d3acf86b170be29de6b0328b063f5451e1f7e917.tar.bz2
Fix tests. IMPLICIT_COMMAND_DEPENDENCIES=all needs to be quoted
Diffstat (limited to 'test/Repository')
-rw-r--r--test/Repository/Program.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Repository/Program.py b/test/Repository/Program.py
index 1af3578..3946d95 100644
--- a/test/Repository/Program.py
+++ b/test/Repository/Program.py
@@ -32,7 +32,7 @@ if sys.platform == 'win32':
else:
_exe = ''
-for implicit_deps in ['0', '1', '"all"']:
+for implicit_deps in ['0', '1', '2', '\"all\"']:
# First, test a single repository.
test = TestSCons.TestSCons()
test.subdir('repository', 'work1')