diff options
author | Tamas Berghammer <tberghammer@google.com> | 2016-10-04 21:32:46 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2016-10-04 21:32:46 +0000 |
commit | d69faef3835abd17dfe90e1c3644cf146d163ec4 (patch) | |
tree | e6f41c83627fe490cf30f773991ad2d33a240f55 /lldb/packages/Python/lldbsuite/test/functionalities | |
parent | e97f6707c3f10b38d0e8eda638eb478cf85a27a8 (diff) | |
download | bcm5719-llvm-d69faef3835abd17dfe90e1c3644cf146d163ec4.tar.gz bcm5719-llvm-d69faef3835abd17dfe90e1c3644cf146d163ec4.zip |
Fix the decorator of TestBreakpointCaseSensitivity
llvm-svn: 283262
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_case_sensitivity/TestBreakpointCaseSensitivity.py | 6 |
1 files 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 4155fb97321..88ccc464419 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() |