[Lldb-commits] [lldb] r324795 - Looks like this fails when built i386 on linux bots, possible target

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 9 17:57:34 PST 2018


Author: jmolenda
Date: Fri Feb  9 17:57:33 2018
New Revision: 324795

URL: http://llvm.org/viewvc/llvm-project?rev=324795&view=rev
Log:
Looks like this fails when built i386 on linux bots, possible target
arch incompat with spec in file so it's rejected and the test fails.
will look into this later, will be a test case issue not a test issue;
test case may only be valid when lldb is built for/running on an x86_64
system.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py?rev=324795&r1=324794&r2=324795&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py Fri Feb  9 17:57:33 2018
@@ -6,6 +6,7 @@ from gdbclientutils import *
 
 class TestTargetXMLArch(GDBRemoteTestBase):
 
+    @expectedFailureAll(archs=["i386"])
     def test(self):
         """
         Test lldb's parsing of the <architecture> tag in the target.xml register




More information about the lldb-commits mailing list