summaryrefslogtreecommitdiff
path: root/test/RPATH.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-09-26 04:19:32 +0000
committerSteven Knight <knight@baldmt.com>2005-09-26 04:19:32 +0000
commit0d2cb0988d25be7125e27d4a7fa965c8ba04c585 (patch)
tree7c7b7025cd6671f75c9f4f26cfbdd8002d902cca /test/RPATH.py
parent1c3439fc04d37b0037faf1ed84ae57698c4c58ba (diff)
downloadscons-0d2cb0988d25be7125e27d4a7fa965c8ba04c585.tar.gz
Explicit "skipping test" messages for a few straggling tests.
Diffstat (limited to 'test/RPATH.py')
-rw-r--r--test/RPATH.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/RPATH.py b/test/RPATH.py
index 844e4075..6ab6eb29 100644
--- a/test/RPATH.py
+++ b/test/RPATH.py
@@ -31,10 +31,9 @@ _exe = TestSCons._exe
test = TestSCons.TestSCons()
-if sys.platform == 'cygwin':
- test.no_result(1)
-elif sys.platform == 'win32':
- test.no_result(1)
+if sys.platform in ['cygwin', 'win32']:
+ msg = "Can not test RPATH on '%s', skipping test.\n" % sys.platform
+ test.skip_test(msg)
foo = test.workpath('foo' + _exe)