summaryrefslogtreecommitdiffstats
path: root/test/SCCS
diff options
context:
space:
mode:
Diffstat (limited to 'test/SCCS')
-rw-r--r--test/SCCS/diskcheck.py3
-rw-r--r--test/SCCS/explicit.py3
-rw-r--r--test/SCCS/implicit.py3
-rw-r--r--test/SCCS/transparent.py3
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")