summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/explain/basic.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/test/explain/basic.py b/test/explain/basic.py
index 99942cd..bd474bb 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:/usr/bin/python New:/usr/bin/python
%(_python_)s %(cat_py)s file3 zzz yyy xxx
""" % locals())