diff options
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/run_locker/TestRunLocker.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/run_locker/TestRunLocker.py b/lldb/test/API/python_api/run_locker/TestRunLocker.py index 191400d..c257684 100644 --- a/lldb/test/API/python_api/run_locker/TestRunLocker.py +++ b/lldb/test/API/python_api/run_locker/TestRunLocker.py @@ -7,6 +7,7 @@ what happens between launch and first stop. import lldb import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * @@ -14,11 +15,13 @@ class TestRunLocker(TestBase): NO_DEBUG_INFO_TESTCASE = True + @expectedFailureAll(oslist=["windows"]) def test_run_locker(self): """Test that the run locker is set correctly when we launch""" self.build() self.runlocker_test(False) + @expectedFailureAll(oslist=["windows"]) def test_run_locker_stop_at_entry(self): """Test that the run locker is set correctly when we launch""" self.build() |
