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/SCCS | |
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/SCCS')
-rw-r--r-- | test/SCCS/diskcheck.py | 3 | ||||
-rw-r--r-- | test/SCCS/explicit.py | 3 | ||||
-rw-r--r-- | test/SCCS/implicit.py | 3 | ||||
-rw-r--r-- | test/SCCS/transparent.py | 3 |
4 files changed, 4 insertions, 8 deletions
diff --git a/test/SCCS/diskcheck.py b/test/SCCS/diskcheck.py index 691f09c..532ad9c 100644 --- a/test/SCCS/diskcheck.py +++ b/test/SCCS/diskcheck.py @@ -36,8 +36,7 @@ test = TestSCons.TestSCons() sccs = test.where_is('sccs') if not sccs: - print "Could not find SCCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'sccs'; skipping test(s).\n") diff --git a/test/SCCS/explicit.py b/test/SCCS/explicit.py index 23bb6eb..0a52ace 100644 --- a/test/SCCS/explicit.py +++ b/test/SCCS/explicit.py @@ -36,8 +36,7 @@ test = TestSCons.TestSCons() sccs = test.where_is('sccs') if not sccs: - print "Could not find SCCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'sccs'; skipping test(s).\n") diff --git a/test/SCCS/implicit.py b/test/SCCS/implicit.py index 3c3676e..eca8e0c 100644 --- a/test/SCCS/implicit.py +++ b/test/SCCS/implicit.py @@ -36,8 +36,7 @@ test = TestSCons.TestSCons() sccs = test.where_is('sccs') if not sccs: - print "Could not find SCCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'sccs'; skipping test(s).\n") diff --git a/test/SCCS/transparent.py b/test/SCCS/transparent.py index ba614cd..384e27c 100644 --- a/test/SCCS/transparent.py +++ b/test/SCCS/transparent.py @@ -36,8 +36,7 @@ test = TestSCons.TestSCons() sccs = test.where_is('sccs') if not sccs: - print "Could not find SCCS, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'sccs'; skipping test(s).\n") |