summaryrefslogtreecommitdiff
path: root/test/Mkdir.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/Mkdir.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/Mkdir.py')
-rw-r--r--test/Mkdir.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Mkdir.py b/test/Mkdir.py
index e0ac3fdc..cdbcd4bc 100644
--- a/test/Mkdir.py
+++ b/test/Mkdir.py
@@ -59,11 +59,11 @@ test.write('f6.in', "f6.in\n")
expect = test.wrap_stdout(read_str = 'Mkdir("d1")\n',
build_str = """\
-cat("f2.out", "f2.in")
+cat(["f2.out"], ["f2.in"])
Mkdir("d3")
Mkdir("d4")
-cat("f5.out", "f5.in")
-cat("f6.out", "f6.in")
+cat(["f5.out"], ["f5.in"])
+cat(["f6.out"], ["f6.in"])
Mkdir("Mkdir-f6.in")
Mkdir("f6.out-Mkdir")
""")