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/chained-build.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/chained-build.py')
-rw-r--r-- | test/chained-build.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/test/chained-build.py b/test/chained-build.py index a2443c8..e4463e5 100644 --- a/test/chained-build.py +++ b/test/chained-build.py @@ -51,10 +51,8 @@ test.run(arguments="--max-drift=0 -f SConstruct1 foo.mid", test.run(arguments="--max-drift=0 -f SConstruct2 foo.out", stdout = test.wrap_stdout('build("foo.out", "foo.mid")\n')) -test.run(arguments="--max-drift=0 -f SConstruct1 foo.mid", - stdout = test.wrap_stdout('scons: "foo.mid" is up to date.\n')) -test.run(arguments="--max-drift=0 -f SConstruct2 foo.out", - stdout = test.wrap_stdout('scons: "foo.out" is up to date.\n')) +test.up_to_date(options="--max-drift=0 -f SConstruct1", arguments="foo.mid") +test.up_to_date(options="--max-drift=0 -f SConstruct2", arguments="foo.out") test.write('foo.in', "foo.in 2") @@ -63,9 +61,7 @@ test.run(arguments="--max-drift=0 -f SConstruct1 foo.mid", test.run(arguments="--max-drift=0 -f SConstruct2 foo.out", stdout = test.wrap_stdout('build("foo.out", "foo.mid")\n')) -test.run(arguments="--max-drift=0 -f SConstruct1 foo.mid", - stdout = test.wrap_stdout('scons: "foo.mid" is up to date.\n')) -test.run(arguments="--max-drift=0 -f SConstruct2 foo.out", - stdout = test.wrap_stdout('scons: "foo.out" is up to date.\n')) +test.up_to_date(options="--max-drift=0 -f SConstruct1", arguments="foo.mid") +test.up_to_date(options="--max-drift=0 -f SConstruct2", arguments="foo.out") test.pass_test() |