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/WhereIs.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/WhereIs.py')
-rw-r--r-- | test/WhereIs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/WhereIs.py b/test/WhereIs.py index 07d3b08..9da3739 100644 --- a/test/WhereIs.py +++ b/test/WhereIs.py @@ -107,7 +107,7 @@ expect = [ test.workpath(sub3_xxx_exe), test.run(arguments = ".", stdout = test.wrap_stdout(read_str = string.join(expect, "\n") + "\n", - build_str = 'scons: "." is up to date.\n')) + build_str = "scons: `.' is up to date.\n")) os.environ['PATH'] = string.join(pathdirs_1243, os.pathsep) @@ -125,6 +125,6 @@ expect = [ test.workpath(sub4_xxx_exe), test.run(arguments = ".", stdout = test.wrap_stdout(read_str = string.join(expect, "\n") + "\n", - build_str = 'scons: "." is up to date.\n')) + build_str = "scons: `.' is up to date.\n")) test.pass_test() |