[Lldb-commits] [lldb] 3fd7d0d - Disable the tests except on Darwin.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 24 12:19:26 PDT 2021


Author: Jim Ingham
Date: 2021-03-24T12:19:18-07:00
New Revision: 3fd7d0d281a9b1dc7a8352cbd29178cbfacc73f1

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

LOG: Disable the tests except on Darwin.

The commit passes the tests on Darwin.  The failure on linux shows
that this change was not sufficient to get this setting to work on linux,
but the behavior is the same as before the patch & test, and it caused
no new failures.

So marking the tests as Darwin only till someone can debug the Linux
issue.

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 81f00f288f60..18962d1443e0 100644
--- a/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py
+++ b/lldb/test/API/functionalities/stop-on-sharedlibrary-load/TestStopOnSharedlibraryEvents.py
@@ -9,13 +9,13 @@ class TestStopOnSharedlibraryEvents(TestBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @skipIfRemote
-    @skipIfWindows
+    @skipUnlessDarwin
     @no_debug_info_test
     def test_stopping_breakpoints(self):
         self.do_test()
 
     @skipIfRemote
-    @skipIfWindows
+    @skipUnlessDarwin
     @no_debug_info_test
     def test_auto_continue(self):
         def auto_continue(bkpt):
@@ -23,15 +23,15 @@ def auto_continue(bkpt):
         self.do_test(auto_continue)
 
     @skipIfRemote
-    @skipIfWindows
     @no_debug_info_test
+    @skipUnlessDarwin
     def test_failing_condition(self):
         def condition(bkpt):
             bkpt.SetCondition("1 == 2")
         self.do_test(condition)
         
     @skipIfRemote
-    @skipIfWindows
+    @skipUnlessDarwin
     @no_debug_info_test
     def test_continue_callback(self):
         def bkpt_callback(bkpt):


        


More information about the lldb-commits mailing list