diff options
author | Steven Knight <knight@baldmt.com> | 2005-08-14 06:00:06 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-08-14 06:00:06 (GMT) |
commit | 1923dc337f9f98c3e08b95654dea4b34084c6302 (patch) | |
tree | 359dd0ea59c350586d639773ea945ad98dd0ce7d /test/RCS | |
parent | a941b68612df943f6addacc59cd1ff3aa47b5907 (diff) | |
download | SCons-1923dc337f9f98c3e08b95654dea4b34084c6302.zip SCons-1923dc337f9f98c3e08b95654dea4b34084c6302.tar.gz SCons-1923dc337f9f98c3e08b95654dea4b34084c6302.tar.bz2 |
Update more tests to use the new skip_test() method. Replace a CHANGES.txt comment inadvertently deleted.
Diffstat (limited to 'test/RCS')
-rw-r--r-- | test/RCS/diskcheck.py | 6 | ||||
-rw-r--r-- | test/RCS/explicit.py | 6 | ||||
-rw-r--r-- | test/RCS/implicit.py | 9 | ||||
-rw-r--r-- | test/RCS/transparent.py | 6 |
4 files changed, 9 insertions, 18 deletions
diff --git a/test/RCS/diskcheck.py b/test/RCS/diskcheck.py index c1d5cca..4a93edf 100644 --- a/test/RCS/diskcheck.py +++ b/test/RCS/diskcheck.py @@ -36,13 +36,11 @@ test = TestSCons.TestSCons() rcs = test.where_is('rcs') if not rcs: - print "Could not find RCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'rcs'; skipping test(s).\n") ci = test.where_is('ci') if not ci: - print "Could not find `ci' command, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'ci'; skipping test(s).\n") diff --git a/test/RCS/explicit.py b/test/RCS/explicit.py index 39ea834..d3d5d87 100644 --- a/test/RCS/explicit.py +++ b/test/RCS/explicit.py @@ -36,13 +36,11 @@ test = TestSCons.TestSCons() rcs = test.where_is('rcs') if not rcs: - print "Could not find RCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'rcs'; skipping test(s).\n") ci = test.where_is('ci') if not ci: - print "Could not find `ci' command, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find `ci' command, skipping test(s).\n") diff --git a/test/RCS/implicit.py b/test/RCS/implicit.py index 2289258..362f15a 100644 --- a/test/RCS/implicit.py +++ b/test/RCS/implicit.py @@ -34,18 +34,15 @@ test = TestSCons.TestSCons() rcs = test.where_is('rcs') if not rcs: - print "Could not find RCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'rcs'; skipping test(s).\n") ci = test.where_is('ci') if not ci: - print "Could not find `ci' command, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'ci'; skipping test(s).\n") co = test.where_is('co') if not co: - print "Could not find `co' command, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'co'; skipping test(s).\n") diff --git a/test/RCS/transparent.py b/test/RCS/transparent.py index 63475c8..28dc558 100644 --- a/test/RCS/transparent.py +++ b/test/RCS/transparent.py @@ -36,13 +36,11 @@ test = TestSCons.TestSCons() rcs = test.where_is('rcs') if not rcs: - print "Could not find RCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'rcs'; skipping test(s).\n") ci = test.where_is('ci') if not ci: - print "Could not find `ci' command, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'ci'; skipping test(s).\n") |