summaryrefslogtreecommitdiffstats
path: root/test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py')
-rw-r--r--test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py b/test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py
index 47acc2f..e5021da 100644
--- a/test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py
+++ b/test/implicit/IMPLICIT_COMMAND_DEPENDENCIES.py
@@ -88,6 +88,7 @@ env1.BuildFile('file1.out', 'file.in')
envNone.BuildFile('fileNone.out', 'file.in')
envFalse.BuildFile('fileFalse.out', 'file.in')
envTrue.BuildFile('fileTrue.out', 'file.in')
+envTrue.BuildFile('fileQuote.out', 'file.in', BUILD_PY='"build.py"')
""" % locals())
@@ -104,6 +105,7 @@ test.must_match('file1.out', expect_none % 'file1.out')
test.must_match('fileNone.out', expect_none % 'fileNone.out')
test.must_match('fileFalse.out', expect_none % 'fileFalse.out')
test.must_match('fileTrue.out', expect_none % 'fileTrue.out')
+test.must_match('fileQuote.out', expect_none % 'fileQuote.out')
@@ -120,6 +122,7 @@ test.must_match('file1.out', expect_extra % 'file1.out')
test.must_match('fileNone.out', expect_none % 'fileNone.out')
test.must_match('fileFalse.out', expect_none % 'fileFalse.out')
test.must_match('fileTrue.out', expect_extra % 'fileTrue.out')
+test.must_match('fileQuote.out', expect_extra % 'fileQuote.out')
test.pass_test()