[Lldb-commits] [lldb] 7d175cf - [lldb] Xfail TestCallOverriddenMethod.py for aarch64/linux
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 9 03:38:50 PST 2019
Author: Muhammad Omair Javaid
Date: 2019-12-09T16:38:33+05:00
New Revision: 7d175cf504bceb72a487a83ed9f640011832d46d
URL: https://github.com/llvm/llvm-project/commit/7d175cf504bceb72a487a83ed9f640011832d46d
DIFF: https://github.com/llvm/llvm-project/commit/7d175cf504bceb72a487a83ed9f640011832d46d.diff
LOG: [lldb] Xfail TestCallOverriddenMethod.py for aarch64/linux
This test still fails on Linux aarch64.
Tested by buildbot running Ubuntu Bionic
Differential Revision: https://reviews.llvm.org/D70722
Added:
Modified:
lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py
Removed:
################################################################################
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py
index ddaafaab9fd2..2ad0c313d601 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py
+++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py
@@ -63,6 +63,7 @@ def test_call_on_derived(self):
# a vtable entry that does not exist in the compiled program).
self.expect("expr d.foo()", substrs=["2"])
+ @skipIf(oslist=["linux"], archs=["aarch64"])
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr43707")
def test_call_on_temporary(self):
"""Test calls to overridden methods in derived classes."""
More information about the lldb-commits
mailing list