summaryrefslogtreecommitdiff
path: root/test/implicit
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-01-20 14:21:54 +0000
committerSteven Knight <knight@baldmt.com>2009-01-20 14:21:54 +0000
commitbe691c26a9efdc7f4a8c8ec396e3cbef6d0cee80 (patch)
treede81e9dd6a5c7b4571b08241fbcaf0278a0a287f /test/implicit
parente6e45eaaa38e5e92c604137c84717e60bbd98d18 (diff)
downloadscons-be691c26a9efdc7f4a8c8ec396e3cbef6d0cee80.tar.gz
Detect implicit command dependencies even when the command is quoted.
Diffstat (limited to 'test/implicit')
-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 47acc2f6..e5021dac 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()