From d69faef3835abd17dfe90e1c3644cf146d163ec4 Mon Sep 17 00:00:00 2001 From: Tamas Berghammer Date: Tue, 4 Oct 2016 21:32:46 +0000 Subject: [PATCH] Fix the decorator of TestBreakpointCaseSensitivity llvm-svn: 283262 --- .../breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py index 4155fb9..88ccc46 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py @@ -19,15 +19,13 @@ class BreakpointCaseSensitivityTestCase(TestBase): TestBase.setUp(self) self.line = line_number('main.c', self.BREAKPOINT_TEXT) - @skipIf(oslist=no_match(['windows'])) # Skip for non-windows platforms + @skipIf(hostoslist=no_match(['windows'])) # Skip for non-windows platforms def test_breakpoint_matches_file_with_different_case(self): """Set breakpoint on file, should match files with different case on Windows""" self.build() self.case_sensitivity_breakpoint(True) - @skipIf(oslist=['windows']) # Skip for windows platforms - # Failing for unknown reason on non-Windows platforms. - + @skipIf(hostoslist=['windows']) # Skip for windows platforms def test_breakpoint_doesnt_match_file_with_different_case(self): """Set breakpoint on file, shouldn't match files with different case on POSIX systems""" self.build() -- 2.7.4