summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/TestSCons.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py
index b39b581..8cba239 100644
--- a/etc/TestSCons.py
+++ b/etc/TestSCons.py
@@ -180,14 +180,14 @@ class TestSCons(TestCommon):
build_str + \
term
- def up_to_date(self, options = None, arguments = None, **kw):
+ def up_to_date(self, options = None, arguments = None, read_str = "", **kw):
s = ""
for arg in string.split(arguments):
s = s + "scons: `%s' is up to date.\n" % arg
if options:
arguments = options + " " + arguments
kw['arguments'] = arguments
- kw['stdout'] = self.wrap_stdout(build_str = s)
+ kw['stdout'] = self.wrap_stdout(read_str = read_str, build_str = s)
apply(self.run, [], kw)
def not_up_to_date(self, options = None, arguments = None, **kw):