summaryrefslogtreecommitdiffstats
path: root/etc/TestSCons.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-09-26 04:19:32 (GMT)
committerSteven Knight <knight@baldmt.com>2005-09-26 04:19:32 (GMT)
commit0d2cb0988d25be7125e27d4a7fa965c8ba04c585 (patch)
tree7c7b7025cd6671f75c9f4f26cfbdd8002d902cca /etc/TestSCons.py
parent1c3439fc04d37b0037faf1ed84ae57698c4c58ba (diff)
downloadSCons-0d2cb0988d25be7125e27d4a7fa965c8ba04c585.zip
SCons-0d2cb0988d25be7125e27d4a7fa965c8ba04c585.tar.gz
SCons-0d2cb0988d25be7125e27d4a7fa965c8ba04c585.tar.bz2
Explicit "skipping test" messages for a few straggling tests.
Diffstat (limited to 'etc/TestSCons.py')
-rw-r--r--etc/TestSCons.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py
index 520bbfd..649cf8e 100644
--- a/etc/TestSCons.py
+++ b/etc/TestSCons.py
@@ -268,7 +268,11 @@ class TestSCons(TestCommon):
# so this is an Aegis invocation; pass the test (exit 0).
self.pass_test()
else:
- self.no_result()
+ # skip=1 means skip this function when showing where this
+ # result came from. They only care about the line where the
+ # script called test.skip_test(), not the line number where
+ # we call test.no_result().
+ self.no_result(skip=1)
def java_ENV(self):