summaryrefslogtreecommitdiff
path: root/test/Chmod.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-08-05 20:00:20 +0000
committerSteven Knight <knight@baldmt.com>2004-08-05 20:00:20 +0000
commit42629fe85a87b728d01c67e65bdbfde310744c63 (patch)
treef96bca18fdb063488c45f340ecf9a8d02902071f /test/Chmod.py
parentd7289a48cb622e56d940fc21c67ee6947a4d5ae1 (diff)
downloadscons-42629fe85a87b728d01c67e65bdbfde310744c63.tar.gz
Return lists of Nodes from all builders, not single Nodes when there's only one.
Diffstat (limited to 'test/Chmod.py')
-rw-r--r--test/Chmod.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Chmod.py b/test/Chmod.py
index d0929dc8..45245f21 100644
--- a/test/Chmod.py
+++ b/test/Chmod.py
@@ -84,12 +84,12 @@ os.chmod(test.workpath('f7.out-Chmod'), 0444)
expect = test.wrap_stdout(read_str = 'Chmod("f1", 0666)\nChmod("d2", 0777)\n',
build_str = """\
-cat("bar.out", "bar.in")
+cat(["bar.out"], ["bar.in"])
Chmod("f3", 0666)
Chmod("d4", 0777)
Chmod("f5", 0666)
-cat("f6.out", "f6.in")
-cat("f7.out", "f7.in")
+cat(["f6.out"], ["f6.in"])
+cat(["f7.out"], ["f7.in"])
Chmod("Chmod-f7.in", 0666)
Chmod("f7.out-Chmod", 0666)
""")