summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2016-09-01 09:17:37 +0000
committerPavel Labath <labath@google.com>2016-09-01 09:17:37 +0000
commitcce9a609fbc5c2d91f2932542981b66991d6b656 (patch)
tree42a5efec7469388de87d661e3b78ed392ed015ad /lldb/packages/Python
parentd56b90a967df5b2a6647cee2c1dfab076082f06a (diff)
downloadbcm5719-llvm-cce9a609fbc5c2d91f2932542981b66991d6b656.tar.gz
bcm5719-llvm-cce9a609fbc5c2d91f2932542981b66991d6b656.zip
XFail TestMemoryFind on 32-bit architectures
the test fails for a very prosaic reason: `(const char *)0x1000` returns "4096" on x86_64 and "1000" (without the "0x") on i386. I haven't tried other 32-bit arches, but I am guessing the behaviour is the same. XFAIL until someone can get a chance to look at this. llvm-svn: 280344
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py b/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
index f7507c73c94..b81cb7ba541 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
@@ -11,6 +11,7 @@ import re
import lldb
from lldbsuite.test.lldbtest import *
import lldbsuite.test.lldbutil as lldbutil
+from lldbsuite.test.decorators import *
class MemoryFindTestCase(TestBase):
@@ -22,6 +23,7 @@ class MemoryFindTestCase(TestBase):
# Find the line number to break inside main().
self.line = line_number('main.cpp', '// break here')
+ @expectedFailureAll(archs=["i386", "arm"])
def test_memory_find(self):
"""Test the 'memory find' command."""
self.build()
OpenPOWER on IntegriCloud