summaryrefslogtreecommitdiffstats
path: root/test/Subversion.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-08-14 06:00:06 (GMT)
committerSteven Knight <knight@baldmt.com>2005-08-14 06:00:06 (GMT)
commitecfd19ceae2a58ad832a6f3cd4f1777a19348345 (patch)
tree359dd0ea59c350586d639773ea945ad98dd0ce7d /test/Subversion.py
parent83ec27e83d7f3851dc782d5246306b41a8fcfa2b (diff)
downloadSCons-ecfd19ceae2a58ad832a6f3cd4f1777a19348345.zip
SCons-ecfd19ceae2a58ad832a6f3cd4f1777a19348345.tar.gz
SCons-ecfd19ceae2a58ad832a6f3cd4f1777a19348345.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.py6
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()