diff options
author | Steven Knight <knight@baldmt.com> | 2005-09-26 04:19:32 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-09-26 04:19:32 (GMT) |
commit | 44d72b613a8b171deec8a83b2d1e1755abcba480 (patch) | |
tree | 7c7b7025cd6671f75c9f4f26cfbdd8002d902cca /test/PharLap.py | |
parent | 6983d042ff273c227c0a4790408a5e8eed013c3d (diff) | |
download | SCons-44d72b613a8b171deec8a83b2d1e1755abcba480.zip SCons-44d72b613a8b171deec8a83b2d1e1755abcba480.tar.gz SCons-44d72b613a8b171deec8a83b2d1e1755abcba480.tar.bz2 |
Explicit "skipping test" messages for a few straggling tests.
Diffstat (limited to 'test/PharLap.py')
-rw-r--r-- | test/PharLap.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/PharLap.py b/test/PharLap.py index 9652598..0455cc2 100644 --- a/test/PharLap.py +++ b/test/PharLap.py @@ -36,8 +36,11 @@ test = TestSCons.TestSCons() if sys.platform != 'win32': test.skip_test('PharLap is only available on win32; skipping test.\n') -test.no_result(not test.detect_tool('linkloc')) -test.no_result(not test.detect_tool('386asm')) +if not test.detect_tool('linkloc'): + test.skip_test("Could not find 'linkloc', skipping test.\n") + +if not test.detect_tool('386asm'): + test.skip_test("Could not find '386asm', skipping test.\n") # From the Phar Lap minasm example program... test.write("minasm.asm", r""" |