[Lldb-commits] [lldb] r269980 - xfail TestTopLevelExprs for arm and aarch64 linux
Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Wed May 18 13:45:12 PDT 2016
Author: omjavaid
Date: Wed May 18 15:45:12 2016
New Revision: 269980
URL: http://llvm.org/viewvc/llvm-project?rev=269980&view=rev
Log:
xfail TestTopLevelExprs for arm and aarch64 linux
TestTopLevelExprs fails on arm and aarch64 linux similar to behaviour on android.
A bug exists here: llvm.org/pr27787.
This patch marks xfail on arm and aarch64.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py?rev=269980&r1=269979&r2=269980&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py Wed May 18 15:45:12 2016
@@ -51,6 +51,7 @@ class TopLevelExpressionsTestCase(TestBa
@add_test_categories(['pyapi'])
@expectedFailureAndroid(api_levels=[21, 22], bugnumber="llvm.org/pr27787")
+ @expectedFailureAll(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr27787")
def test_top_level_expressions(self):
self.build_and_run()
More information about the lldb-commits
mailing list