diff options
Diffstat (limited to 'test/RANLIBFLAGS.py')
-rw-r--r-- | test/RANLIBFLAGS.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/RANLIBFLAGS.py b/test/RANLIBFLAGS.py index d6c25a8..377536c 100644 --- a/test/RANLIBFLAGS.py +++ b/test/RANLIBFLAGS.py @@ -36,7 +36,8 @@ test = TestSCons.TestSCons() ranlib = test.detect('RANLIB', 'ranlib') -test.no_result(not ranlib) +if not ranlib: + test.skip_test("Could not find 'ranlib', skipping test.\n") test.write("wrapper.py", """import os |