diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-04-28 02:53:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-28 02:53:01 (GMT) |
commit | d3721490e0835944b3575301b77f4010ed0323fa (patch) | |
tree | 29c7e22d7b5cfb4d546e869b8679a1373f2153fe /test | |
parent | fdea3fb50bc90bcf8500bcb7321a3d25d2023177 (diff) | |
parent | 3a1be411be803224f17702a968fe35d9c3cc6a89 (diff) | |
download | SCons-d3721490e0835944b3575301b77f4010ed0323fa.zip SCons-d3721490e0835944b3575301b77f4010ed0323fa.tar.gz SCons-d3721490e0835944b3575301b77f4010ed0323fa.tar.bz2 |
Merge pull request #3341 from bdbaddog/enhanced_debug_explain
Enhanced debug explain
Diffstat (limited to 'test')
-rw-r--r-- | test/explain/basic.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/explain/basic.py b/test/explain/basic.py index 99942cd..0d4f0ef 100644 --- a/test/explain/basic.py +++ b/test/explain/basic.py @@ -324,9 +324,15 @@ env.Cat('file3', ['zzz', 'yyy', 'xxx']) python_sep = python.replace('\\', '\\\\') expect = test.wrap_stdout("""\ -scons: rebuilding `file3' because the dependency order changed: - old: ['xxx', 'yyy', 'zzz', '%(python_sep)s'] - new: ['zzz', 'yyy', 'xxx', '%(python_sep)s'] +scons: rebuilding `file3' because: + the dependency order changed: + ->Sources + Old:xxx New:zzz + Old:yyy New:yyy + Old:zzz New:xxx + ->Depends + ->Implicit + Old:%(_python_)s New:%(_python_)s %(_python_)s %(cat_py)s file3 zzz yyy xxx """ % locals()) |