diff options
author | Steven Knight <knight@baldmt.com> | 2003-06-18 18:35:59 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-06-18 18:35:59 (GMT) |
commit | 311058e447522c96a320b81bc8beaca41112c006 (patch) | |
tree | e4c8fae81af049dcb0319f978b24bb28d12df714 /test/SConstruct.py | |
parent | b61917920644e58ab48cad87dabc19f9db6f0a64 (diff) | |
download | SCons-311058e447522c96a320b81bc8beaca41112c006.zip SCons-311058e447522c96a320b81bc8beaca41112c006.tar.gz SCons-311058e447522c96a320b81bc8beaca41112c006.tar.bz2 |
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.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/SConstruct.py b/test/SConstruct.py index 091984d..cd201d2 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() |