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/Move.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/Move.py')
-rw-r--r-- | test/Move.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Move.py b/test/Move.py index a1d9772..c1cdcfd 100644 --- a/test/Move.py +++ b/test/Move.py @@ -59,11 +59,11 @@ test.write('f6.in-Move', "f6.in-Move\n") expect = test.wrap_stdout(read_str = 'Move("f1.out", "f1.in")\n', build_str = """\ -cat("f2.out", "f2.in") +cat(["f2.out"], ["f2.in"]) Move("f3.out", "f3.in") Move("f4.out", "f4.in") -cat("f5.out", "f5.in") -cat("f6.out", "f6.in") +cat(["f5.out"], ["f5.in"]) +cat(["f6.out"], ["f6.in"]) Move("Move-f6.out", "f6.in-Move") """) test.run(options = '-n', arguments = '.', stdout = expect) |