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/Subversion.py | |
| 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/Subversion.py')
| -rw-r--r-- | test/Subversion.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Subversion.py b/test/Subversion.py index 54e9942..74ff86c 100644 --- a/test/Subversion.py +++ b/test/Subversion.py @@ -34,13 +34,11 @@ test = TestSCons.TestSCons() svn = test.where_is('svn') if not svn: - print "Could not find Subversion, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'svn'; skipping test(s).\n") svnadmin = test.where_is('svnadmin') if not svn: - print "Could not find Subversion, skipping test(s)." - test.pass_test(1) + test.skip_test("Could not find 'svnadmin'; skipping test(s).\n") print "Short-circuiting this test until we support Subversion" test.pass_test() |
