diff options
author | Pavel Labath <labath@google.com> | 2016-09-02 09:52:18 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-09-02 09:52:18 +0000 |
commit | e6ece918e9b9877abc690de90328349b612d40d3 (patch) | |
tree | 6880a5111e812cdd5b9bc351ca3d6e6ccbb9988f /lldb/packages/Python/lldbsuite/test | |
parent | ce57a33e580daec47f09b21a46bed161aeb7dcc1 (diff) | |
download | bcm5719-llvm-e6ece918e9b9877abc690de90328349b612d40d3.tar.gz bcm5719-llvm-e6ece918e9b9877abc690de90328349b612d40d3.zip |
Revert "Make Scalar::GetValue more consistent"
This reverts commit r280476 as it breaks several tests on i386. I was fixing an 32-bit
breakage, and I did not run the 32-bit test suite before submitting, oops.
llvm-svn: 280478
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py | 1 |
1 files changed, 1 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 6cdf5bf48e9..b81cb7ba541 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py @@ -23,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() |