diff options
author | Steven Knight <knight@baldmt.com> | 2004-08-05 20:00:20 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-08-05 20:00:20 (GMT) |
commit | 42629fe85a87b728d01c67e65bdbfde310744c63 (patch) | |
tree | f96bca18fdb063488c45f340ecf9a8d02902071f /test/Copy.py | |
parent | d7289a48cb622e56d940fc21c67ee6947a4d5ae1 (diff) | |
download | SCons-42629fe85a87b728d01c67e65bdbfde310744c63.zip SCons-42629fe85a87b728d01c67e65bdbfde310744c63.tar.gz SCons-42629fe85a87b728d01c67e65bdbfde310744c63.tar.bz2 |
Return lists of Nodes from all builders, not single Nodes when there's only one.
Diffstat (limited to 'test/Copy.py')
-rw-r--r-- | test/Copy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Copy.py b/test/Copy.py index 00642da..b318e58 100644 --- a/test/Copy.py +++ b/test/Copy.py @@ -77,13 +77,13 @@ Copy("d2.out", "d2.in") Copy("d3.out", "f3.in") """, build_str = """\ -cat("bar.out", "bar.in") +cat(["bar.out"], ["bar.in"]) Copy("f4.out", "f4.in") Copy("d5.out", "d5.in") Copy("d6.out", "f6.in") Copy("f7.out", "f7.in") -cat("f8.out", "f8.in") -cat("f9.out", "f9.in") +cat(["f8.out"], ["f8.in"]) +cat(["f9.out"], ["f9.in"]) Copy("f9.out-Copy", "f9.in") """) test.run(options = '-n', arguments = '.', stdout = expect) |