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/Scanner.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/Scanner.py')
-rw-r--r-- | test/Scanner.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Scanner.py b/test/Scanner.py index 6016795..42ef18d 100644 --- a/test/Scanner.py +++ b/test/Scanner.py @@ -50,7 +50,7 @@ sys.exit(0) """) # Execute a subsidiary SConscript just to make sure we can -# get at the SCanners keyword from there. +# get at the Scanner keyword from there. test.write('SConstruct', """ SConscript('SConscript') @@ -132,7 +132,6 @@ test.fail_test(test.read('foo') != "foo.k 1 line 1\nxxx 2\nyyy 2\nfoo.k 1 line 4 test.fail_test(test.read('bar') != "yyy 2\nbar.in 1 line 2\nbar.in 1 line 3\nzzz 2\n") -test.run(arguments = 'foo', - stdout=test.wrap_stdout('scons: "foo" is up to date.\n')) +test.up_to_date(arguments = 'foo') test.pass_test() |