From e8e07b3a5e6032edeed559db448402094cff31bf Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Fri, 19 Mar 2021 12:38:23 -0700 Subject: [PATCH] Revert "Skip all the tests for Windows." This reverts commit a8d62fc8ff1c836e16cfb1a510ee8063ac2652ff. --- .../stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py b/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py index d19a790..98c4eb8 100644 --- a/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py +++ b/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py @@ -14,25 +14,16 @@ class TestStopOnSharedlibraryEvents(TestBase): def test_stopping_breakpoints(self): self.do_test() - @skipIfRemote - @skipIfWindows - @no_debug_info_test def test_auto_continue(self): def auto_continue(bkpt): bkpt.SetAutoContinue(True) self.do_test(auto_continue) - @skipIfRemote - @skipIfWindows - @no_debug_info_test def test_failing_condition(self): def condition(bkpt): bkpt.SetCondition("1 == 2") self.do_test(condition) - @skipIfRemote - @skipIfWindows - @no_debug_info_test def test_continue_callback(self): def bkpt_callback(bkpt): bkpt.SetScriptCallbackBody("return False") -- 2.7.4