[Lldb-commits] [lldb] b82b018 - [LLDB] XFail TestLoadUnload.test_static_init_during_load AArch64/Windows

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 13 04:18:42 PDT 2022


Author: Muhammad Omair Javaid
Date: 2022-07-13T16:18:18+05:00
New Revision: b82b0187129ddb40d85c6fc0847c536967273600

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

LOG: [LLDB] XFail TestLoadUnload.test_static_init_during_load AArch64/Windows

This patch fixes marks TestLoadUnload.test_static_init_during_load as
xfail for AArch64 windows. It is failing similar to Linux and already
marked xfail for linux.

Added: 
    

Modified: 
    lldb/test/API/functionalities/load_unload/TestLoadUnload.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/load_unload/TestLoadUnload.py b/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
index 70d08f4884c08..d310c08d77426 100644
--- a/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
+++ b/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
@@ -377,6 +377,7 @@ def run_step_over_load(self):
     # We can't find a breakpoint location for d_init before launching because
     # executable dependencies are resolved relative to the debuggers PWD. Bug?
     @expectedFailureAll(oslist=["freebsd", "linux", "netbsd"], triple=no_match('aarch64-.*-android'))
+    @expectedFailureAll(oslist=["windows"], archs=["aarch64"])
     def test_static_init_during_load(self):
         """Test that we can set breakpoints correctly in static initializers"""
         self.copy_shlibs_to_remote()


        


More information about the lldb-commits mailing list