summaryrefslogtreecommitdiffstats
path: root/test/Scanner
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins@gmail.com>2015-06-30 03:32:45 (GMT)
committerWilliam Blevins <wblevins@gmail.com>2015-06-30 03:32:45 (GMT)
commite5ac090e378fd5cda31dd70f762ea2792eed7dc7 (patch)
treee4ffce8474a2f0b101410a476472ae5dc550fbbc /test/Scanner
parent5260437c85052289702664c6a1025202eaf7111a (diff)
downloadSCons-e5ac090e378fd5cda31dd70f762ea2792eed7dc7.zip
SCons-e5ac090e378fd5cda31dd70f762ea2792eed7dc7.tar.gz
SCons-e5ac090e378fd5cda31dd70f762ea2792eed7dc7.tar.bz2
Issue 2264: Updated behaviour when scanning included dependencies for nodes without scanner_key mappings.
Diffstat (limited to 'test/Scanner')
-rw-r--r--test/Scanner/exception.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/Scanner/exception.py b/test/Scanner/exception.py
index de0a795..1a14152 100644
--- a/test/Scanner/exception.py
+++ b/test/Scanner/exception.py
@@ -83,23 +83,23 @@ env.Cat('bar', bar_in)
test.write('foo.k',
"""foo.k 1 line 1
-include xxx.k
-include yyy.k
+include xxx
+include yyy
foo.k 1 line 4
""")
test.write('bar.in',
-"""include yyy.k
+"""include yyy
bar.in 1 line 2
bar.in 1 line 3
-include zzz.k
+include zzz
""")
-test.write('xxx.k', "xxx 1\n")
+test.write('xxx', "xxx 1\n")
-test.write('yyy.k', "exception yyy 1\n")
+test.write('yyy', "exception yyy 1\n")
-test.write('zzz.k', "zzz 1\n")
+test.write('zzz', "zzz 1\n")
test.run(arguments = '.',
status = 2,