[Lldb-commits] [lldb] 3fd9aeb - [LLDB] XFAIL TestLoadUnload fails on Arm/Ubuntu Jammy
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 17 01:09:29 PDT 2022
Author: Muhammad Omair Javaid
Date: 2022-06-17T12:06:35+04:00
New Revision: 3fd9aebbb75ab0966bd767e15ba6a69cad17f160
URL: https://github.com/llvm/llvm-project/commit/3fd9aebbb75ab0966bd767e15ba6a69cad17f160
DIFF: https://github.com/llvm/llvm-project/commit/3fd9aebbb75ab0966bd767e15ba6a69cad17f160.diff
LOG: [LLDB] XFAIL TestLoadUnload fails on Arm/Ubuntu Jammy
This patch marks following tests as XFAIL for Arm/Ubuntu Jammy 22.04:
test_lldb_process_load_and_unload_commands
test_load_unload
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 f3b715c4c35ed..15e602cc784db 100644
--- a/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
+++ b/lldb/test/API/functionalities/load_unload/TestLoadUnload.py
@@ -203,6 +203,7 @@ def test_dyld_library_path(self):
hostoslist=["windows"],
triple='.*-android')
@expectedFailureAll(oslist=["windows"]) # process load not implemented
+ @expectedFailureAll(oslist=["linux"], archs=["arm"]) # Fails on ubuntu jammy
def test_lldb_process_load_and_unload_commands(self):
self.setSvr4Support(False)
self.run_lldb_process_load_and_unload_commands()
@@ -296,6 +297,7 @@ def run_lldb_process_load_and_unload_commands(self):
self.runCmd("process continue")
@expectedFailureAll(oslist=["windows"]) # breakpoint not hit
+ @expectedFailureAll(oslist=["linux"], archs=["arm"]) # Fails on ubuntu jammy
def test_load_unload(self):
self.setSvr4Support(False)
self.run_load_unload()
More information about the lldb-commits
mailing list