Author: Muhammad Omair Javaid Date: 2021-10-11T12:58:21+05:00 New Revision: c63cb0c80ec7eb2dedad6e89fb9a3042b71d3b0f
URL: https://github.com/llvm/llvm-project/commit/c63cb0c80ec7eb2dedad6e89fb9a3042b71d3b0f DIFF: https://github.com/llvm/llvm-project/commit/c63cb0c80ec7eb2dedad6e89fb9a3042b71d3b0f.diff LOG: [LLDB] Skip TestScriptedProcess on Arm/AArch64 Linux This is failing on Arm and AArch64 Linux buildbots since the time it was comitted. https://lab.llvm.org/buildbot/#/builders/96/builds/12628 Differential Revision: https://reviews.llvm.org/D107585 Added: Modified: lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py Removed: ################################################################################ diff --git a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py index 963ba060f949..9f5b804d91a3 100644 --- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py +++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py @@ -43,6 +43,7 @@ def test_python_plugin_package(self): self.expect('script dir(ScriptedProcess)', substrs=["launch"]) + @skipIf(oslist=["linux"], archs=["arm", "aarch64"]) def test_scripted_process_and_scripted_thread(self): """Test that we can launch an lldb scripted process using the SBAPI, check its process ID, read string from memory, check scripted thread _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits