diff options
Diffstat (limited to 'test/Case.py')
-rw-r--r-- | test/Case.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Case.py b/test/Case.py index 663aa40..4f08927 100644 --- a/test/Case.py +++ b/test/Case.py @@ -65,8 +65,8 @@ void bar() { } """) -if sys.platform == 'darwin': - test.skip_test("Skipping test on Darwin/OSX; it has partial case sensitivity.") +if sys.platform[:6] == 'darwin': + test.skip_test("Skipping test on Darwin/OSX; it has partial case sensitivity.\n") if sys.platform in ['cygwin', 'win32']: sys.stdout.write("Using case-insensitive filesystem, testing for failure\n") |