summaryrefslogtreecommitdiff
path: root/test/SConstruct.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/SConstruct.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/SConstruct.py')
-rw-r--r--test/SConstruct.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SConstruct.py b/test/SConstruct.py
index 091984d3..cd201d26 100644
--- a/test/SConstruct.py
+++ b/test/SConstruct.py
@@ -48,7 +48,7 @@ print "sconstruct", os.getcwd()
test.run(arguments = ".",
stdout = test.wrap_stdout(read_str = 'sconstruct %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.write('Sconstruct', """
@@ -58,7 +58,7 @@ print "Sconstruct", os.getcwd()
test.run(arguments = ".",
stdout = test.wrap_stdout(read_str = 'Sconstruct %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.write('SConstruct', """
import os
@@ -67,6 +67,6 @@ print "SConstruct", os.getcwd()
test.run(arguments = ".",
stdout = test.wrap_stdout(read_str = 'SConstruct %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.pass_test()