Fix the decorator of TestBreakpointCaseSensitivity
authorTamas Berghammer <tberghammer@google.com>
Tue, 4 Oct 2016 21:32:46 +0000 (21:32 +0000)
committerTamas Berghammer <tberghammer@google.com>
Tue, 4 Oct 2016 21:32:46 +0000 (21:32 +0000)
llvm-svn: 283262

lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py

index 4155fb9..88ccc46 100644 (file)
@@ -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()