[Lldb-commits] [lldb] 6805a77 - [LLDB] Mark some xfails for arm-linux
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Tue May 12 20:05:48 PDT 2020
Author: Muhammad Omair Javaid
Date: 2020-05-13T08:05:27+05:00
New Revision: 6805a77eb66e2e4c9f308bc49c77297f790a5e7b
URL: https://github.com/llvm/llvm-project/commit/6805a77eb66e2e4c9f308bc49c77297f790a5e7b
DIFF: https://github.com/llvm/llvm-project/commit/6805a77eb66e2e4c9f308bc49c77297f790a5e7b.diff
LOG: [LLDB] Mark some xfails for arm-linux
This patch marks following tests as xfail for arm-linux target.
lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
lldb/test/API/python_api/thread/TestThreadAPI.py
lldb/test/Shell/Recognizer/assert.test
Bugs have been filed for all of them for the corresponding failing
component.
Added:
Modified:
lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
lldb/test/API/python_api/thread/TestThreadAPI.py
lldb/test/Shell/Recognizer/assert.test
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py b/lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
index 0adb3d09b606..a7d5f07a0976 100644
--- a/lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
+++ b/lldb/test/API/functionalities/load_using_paths/TestLoadUsingPaths.py
@@ -40,6 +40,7 @@ def setUp(self):
@not_remote_testsuite_ready
@skipIfWindows # Windows doesn't have dlopen and friends, dynamic libraries work
diff erently
@expectedFlakeyNetBSD
+ @expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45894")
def test_load_using_paths(self):
"""Test that we can load a module by providing a set of search paths."""
if self.platformIsDarwin():
diff --git a/lldb/test/API/python_api/thread/TestThreadAPI.py b/lldb/test/API/python_api/thread/TestThreadAPI.py
index 87d4eb8ae712..6e4aeddc82c9 100644
--- a/lldb/test/API/python_api/thread/TestThreadAPI.py
+++ b/lldb/test/API/python_api/thread/TestThreadAPI.py
@@ -38,6 +38,7 @@ def test_run_to_address(self):
self.run_to_address(self.exe_name)
@add_test_categories(['pyapi'])
+ @expectedFailureAll(oslist=["linux"], archs=['arm'], bugnumber="llvm.org/pr45892")
@expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr20476')
@expectedFailureAll(oslist=["windows"])
@expectedFailureNetBSD
diff --git a/lldb/test/Shell/Recognizer/assert.test b/lldb/test/Shell/Recognizer/assert.test
index 9b4aa21611e0..7a96f3610ec5 100644
--- a/lldb/test/Shell/Recognizer/assert.test
+++ b/lldb/test/Shell/Recognizer/assert.test
@@ -1,3 +1,4 @@
+// XFAIL: target-arm && linux-gnu
# UNSUPPORTED: system-windows
# RUN: %clang_host -g -O0 %S/Inputs/assert.c -o %t.out
# RUN: %lldb -b -s %s %t.out | FileCheck %s
More information about the lldb-commits
mailing list