summaryrefslogtreecommitdiffstats
path: root/test/option-f.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-f.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-f.py')
-rw-r--r--test/option-f.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/option-f.py b/test/option-f.py
index ee1c18c..2001a06 100644
--- a/test/option-f.py
+++ b/test/option-f.py
@@ -47,45 +47,45 @@ wpath = test.workpath()
test.run(arguments = '-f SConscript .',
stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '-f %s .' % subdir_BuildThis,
stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--file=SConscript .',
stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--file=%s .' % subdir_BuildThis,
stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--makefile=SConscript .',
stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--makefile=%s .' % subdir_BuildThis,
stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--sconstruct=SConscript .',
stdout = test.wrap_stdout(read_str = 'SConscript %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '--sconstruct=%s .' % subdir_BuildThis,
stdout = test.wrap_stdout(read_str = 'subdir/BuildThis %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '-f - .', stdin = """
import os
print "STDIN " + os.getcwd()
""",
stdout = test.wrap_stdout(read_str = 'STDIN %s\n' % wpath,
- build_str = 'scons: "." is up to date.\n'))
+ build_str = "scons: `.' is up to date.\n"))
test.run(arguments = '-f no_such_file .',
- stdout = test.wrap_stdout('scons: "." is up to date.\n'),
+ stdout = test.wrap_stdout("scons: `.' is up to date.\n"),
stderr = "Ignoring missing SConscript 'no_such_file'\n")
test.pass_test()