summaryrefslogtreecommitdiffstats
path: root/test/option--I.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 (GMT)
committerSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 (GMT)
commit311058e447522c96a320b81bc8beaca41112c006 (patch)
treee4c8fae81af049dcb0319f978b24bb28d12df714 /test/option--I.py
parentb61917920644e58ab48cad87dabc19f9db6f0a64 (diff)
downloadSCons-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/option--I.py')
-rw-r--r--test/option--I.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option--I.py b/test/option--I.py
index b0e9254..05da4c0 100644
--- a/test/option--I.py
+++ b/test/option--I.py
@@ -53,11 +53,11 @@ print bar.variable
test.run(arguments = '-I sub1 -I sub2 .',
stdout = test.wrap_stdout(read_str = 'sub1/foo\nsub2/bar\n',
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--include-dir=sub2 --include-dir=sub1 .',
stdout = test.wrap_stdout(read_str = 'sub2/foo\nsub2/bar\n',
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.pass_test()