diff options
author | Ed Maste <emaste@freebsd.org> | 2013-09-10 17:15:05 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-09-10 17:15:05 +0000 |
commit | 0afb78a83ee5510282e05bb3712f3e74b699fc58 (patch) | |
tree | 13f700c7f3a5974ebcc5b17f4750f573c861d502 /lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | |
parent | fcd4caac8c588a05e4e076269355824c664691a2 (diff) | |
download | bcm5719-llvm-0afb78a83ee5510282e05bb3712f3e74b699fc58.tar.gz bcm5719-llvm-0afb78a83ee5510282e05bb3712f3e74b699fc58.zip |
test: Add @expectedFailureFreeBSD decorators
llvm.org/pr17184 expression interpreter fails for crash/assert tests
llvm-svn: 190416
Diffstat (limited to 'lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py')
-rw-r--r-- | lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py index cb652ac592a..26fa6e42b07 100644 --- a/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py +++ b/lldb/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py @@ -27,6 +27,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.buildDsym() self.recursive_inferior_crashing_registers() + @expectedFailureFreeBSD('llvm.org/pr17184') def test_recursive_inferior_crashing_register_dwarf(self): """Test that lldb reliably reads registers from the inferior after crashing (command).""" self.buildDwarf() @@ -44,6 +45,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.buildDsym() self.recursive_inferior_crashing_expr() + @expectedFailureFreeBSD('llvm.org/pr17184') def test_recursive_inferior_crashing_expr_dwarf(self): """Test that the lldb expression interpreter can read from the inferior after crashing (command).""" self.buildDwarf() @@ -78,6 +80,7 @@ class CrashingRecursiveInferiorTestCase(TestBase): self.buildDsym() self.recursive_inferior_crashing_expr_step_expr() + @expectedFailureFreeBSD('llvm.org/pr17184') @expectedFailureLinux # due to llvm.org/pr15415 with -fomit-frame-pointer, and pr15989 with ebp/rbp def test_recursive_inferior_crashing_expr_step_and_expr_dwarf(self): """Test that lldb expressions work before and after stepping after a crash.""" |