diff options
author | Pavel Labath <labath@google.com> | 2016-09-02 10:58:52 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-09-02 10:58:52 +0000 |
commit | f92756e9ec18720f0235f89d3eedbd0aff39db15 (patch) | |
tree | d0a9db1eb734027d81845b4ea7612efef0c6516f /lldb/packages/Python/lldbsuite/test | |
parent | 0f0ef132aff2ac6d4e095da3b1f3b83c106dd8c1 (diff) | |
download | bcm5719-llvm-f92756e9ec18720f0235f89d3eedbd0aff39db15.tar.gz bcm5719-llvm-f92756e9ec18720f0235f89d3eedbd0aff39db15.zip |
Reapply "Make Scalar::GetValue more consistent"
this is a resubmission of r280476. The problem with the original commit was that it was printing
out all numbers as signed, which was wrong for unsigned numbers with the MSB set. Fix that and
add a unit test covering that case.
llvm-svn: 280480
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, 0 insertions, 1 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 b81cb7ba541..6cdf5bf48e9 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py @@ -23,7 +23,6 @@ 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() |