[Lldb-commits] [lldb] 86e6030 - [lldb/Test] Disable test_scripted_process_and_scripted_thread on Windows
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 4 14:56:29 PST 2022
Author: Med Ismail Bennani
Date: 2022-03-04T14:56:20-08:00
New Revision: 86e6030ee8f8758f6e0807fc39a1aa0d8a03b68f
URL: https://github.com/llvm/llvm-project/commit/86e6030ee8f8758f6e0807fc39a1aa0d8a03b68f
DIFF: https://github.com/llvm/llvm-project/commit/86e6030ee8f8758f6e0807fc39a1aa0d8a03b68f.diff
LOG: [lldb/Test] Disable test_scripted_process_and_scripted_thread on Windows
This disables TestScriptedProcess.test_scripted_process_and_scripted_thread
on Windows since the inferior binary a linked to a dylib that doesn't
build on Windows.
This should fix https://lab.llvm.org/buildbot/#/builders/83/builds/16100
Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>
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 a622722cd92e1..a3b01c5c58e0c 100644
--- a/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
+++ b/lldb/test/API/functionalities/scripted_process/TestScriptedProcess.py
@@ -80,7 +80,7 @@ def cleanup():
self.assertIn("Failed to get scripted thread registers data.", log)
- @skipIf(archs=no_match(['x86_64', 'arm64', 'arm64e']))
+ @skipUnlessDarwin
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
More information about the lldb-commits
mailing list