[Lldb-commits] [lldb] 94a5919 - [LLDB] Skip test_launch_simple from TestTargetAPI.py on Arm/AArch64 Linux
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 6 05:38:50 PDT 2020
Author: Muhammad Omair Javaid
Date: 2020-08-06T17:38:20+05:00
New Revision: 94a5919946a0a6b87720d9d1dfd15071ae3a5a49
URL: https://github.com/llvm/llvm-project/commit/94a5919946a0a6b87720d9d1dfd15071ae3a5a49
DIFF: https://github.com/llvm/llvm-project/commit/94a5919946a0a6b87720d9d1dfd15071ae3a5a49.diff
LOG: [LLDB] Skip test_launch_simple from TestTargetAPI.py on Arm/AArch64 Linux
Recently added TestTargetAPI.py test "test_launch_simple" is failing on
Arm/AArch64 Linux targets. Putting them to skip until fixed.
Differential Revision: https://reviews.llvm.org/D85235
Added:
Modified:
lldb/test/API/python_api/target/TestTargetAPI.py
Removed:
################################################################################
diff --git a/lldb/test/API/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py
index 7db53883eb6a..70bf1a3b4d07 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -153,6 +153,7 @@ def test_read_memory(self):
@add_test_categories(['pyapi'])
@skipIfWindows # stdio manipulation unsupported on Windows
+ @skipIf(oslist=["linux"], archs=["arm", "aarch64"])
def test_launch_simple(self):
d = {'EXE': 'b.out'}
self.build(dictionary=d)
More information about the lldb-commits
mailing list