diff options
author | Enrico Granata <egranata@apple.com> | 2014-10-16 22:04:05 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-10-16 22:04:05 +0000 |
commit | be7d285e73b5ed46ff83abdb5b1e1c92bf5626fe (patch) | |
tree | b2cd0666af25c5567f271c3d6f8f37c48e0faf87 /lldb/test/lang/c/anonymous/TestAnonymous.py | |
parent | d116f4a0a05848e5be9db7c63f2080ca37f0019c (diff) | |
download | bcm5719-llvm-be7d285e73b5ed46ff83abdb5b1e1c92bf5626fe.tar.gz bcm5719-llvm-be7d285e73b5ed46ff83abdb5b1e1c92bf5626fe.zip |
This test actually works alright - we were just checking for the wrong string
llvm-svn: 219971
Diffstat (limited to 'lldb/test/lang/c/anonymous/TestAnonymous.py')
-rw-r--r-- | lldb/test/lang/c/anonymous/TestAnonymous.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/lang/c/anonymous/TestAnonymous.py b/lldb/test/lang/c/anonymous/TestAnonymous.py index 93f232a36bb..da642b9cee4 100644 --- a/lldb/test/lang/c/anonymous/TestAnonymous.py +++ b/lldb/test/lang/c/anonymous/TestAnonymous.py @@ -30,7 +30,6 @@ class AnonymousTestCase(TestBase): self.buildDsym() self.expr_parent() - @unittest2.expectedFailure # llvm.org/pr15591 @dsym_test def test_expr_null(self): self.buildDsym() @@ -66,7 +65,6 @@ class AnonymousTestCase(TestBase): self.buildDwarf() self.expr_parent() - @unittest2.expectedFailure # llvm.org/pr15591 @dwarf_test def test_expr_null(self): self.buildDwarf() @@ -151,8 +149,7 @@ class AnonymousTestCase(TestBase): # This should fail because pz is 0, but it succeeds on OS/X. # This fails on Linux with an upstream error "Couldn't dematerialize struct", as does "p *n" with "int *n = 0". # Note that this can also trigger llvm.org/pr15036 when run interactively at the lldb command prompt. - self.expect("expression *(type_z *)pz", - substrs = ["Cannot access memory at address 0x0"], error = True) + self.expect("expression *(type_z *)pz", error = True) def child_by_name(self): exe = os.path.join (os.getcwd(), "a.out") |