Author: Jim Ingham
Date: 2021-03-19T12:38:23-07:00
New Revision: e8e07b3a5e6032edeed559db448402094cff31bf

URL: 
https://github.com/llvm/llvm-project/commit/e8e07b3a5e6032edeed559db448402094cff31bf
DIFF: 
https://github.com/llvm/llvm-project/commit/e8e07b3a5e6032edeed559db448402094cff31bf.diff

LOG: Revert "Skip all the tests for Windows."

This reverts commit a8d62fc8ff1c836e16cfb1a510ee8063ac2652ff.

Added: 
    

Modified: 
    
lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py

Removed: 
    


################################################################################
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 d19a790f7830..98c4eb89ff54 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")


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to