[Lldb-commits] [lldb] a8d62fc - Skip all the tests for Windows.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 19 12:05:31 PDT 2021


Author: Jim Ingham
Date: 2021-03-19T12:05:16-07:00
New Revision: a8d62fc8ff1c836e16cfb1a510ee8063ac2652ff

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

LOG: Skip all the tests for Windows.

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 98c4eb89ff54..d19a790f7830 100644
--- a/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py
+++ b/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py
@@ -14,16 +14,25 @@ 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")


        


More information about the lldb-commits mailing list