summaryrefslogtreecommitdiff
path: root/test/up-to-date.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 +0000
committerSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 +0000
commit311058e447522c96a320b81bc8beaca41112c006 (patch)
treee4c8fae81af049dcb0319f978b24bb28d12df714 /test/up-to-date.py
parentb61917920644e58ab48cad87dabc19f9db6f0a64 (diff)
downloadscons-311058e447522c96a320b81bc8beaca41112c006.tar.gz
Change the double quotes around an up-to-date target to be like Make.
Diffstat (limited to 'test/up-to-date.py')
-rw-r--r--test/up-to-date.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/up-to-date.py b/test/up-to-date.py
index 8311444a..460401a1 100644
--- a/test/up-to-date.py
+++ b/test/up-to-date.py
@@ -58,9 +58,10 @@ test.write('f4.in', "f4.in\n")
test.run(arguments = 'f1.out f3.out')
test.run(arguments = 'f1.out f2.out f3.out f4.out', stdout =
-test.wrap_stdout("""scons: "f1.out" is up to date.
+test.wrap_stdout("""\
+scons: `f1.out' is up to date.
%s build.py f2.out f2.in
-scons: "f3.out" is up to date.
+scons: `f3.out' is up to date.
%s build.py f4.out f4.in
""" % (python, python)))