summaryrefslogtreecommitdiff
path: root/test/option--C.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/option--C.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/option--C.py')
-rw-r--r--test/option--C.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/option--C.py b/test/option--C.py
index 8c9a07bf..c889602d 100644
--- a/test/option--C.py
+++ b/test/option--C.py
@@ -67,23 +67,23 @@ print GetBuildPath('..')
test.run(arguments = '-C sub .',
stdout = test.wrap_stdout(read_str = '%s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '-C sub -C dir .',
stdout = test.wrap_stdout(read_str = '%s\n' % wpath_sub,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
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.run(arguments = '--directory=sub/dir .',
stdout = test.wrap_stdout(read_str = '%s\n' % wpath_sub,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '-C %s -C %s .' % (wpath_sub_dir, wpath_sub),
stdout = test.wrap_stdout(read_str = '%s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.pass_test()