diff options
| author | Omair Javaid <omair.javaid@linaro.org> | 2016-01-27 13:57:33 +0000 | 
|---|---|---|
| committer | Omair Javaid <omair.javaid@linaro.org> | 2016-01-27 13:57:33 +0000 | 
| commit | 7124c11ad9fef5b767aa94e4ac2c2d5e21c6381d (patch) | |
| tree | 7b1709ecba0dc1fb025ecc765732736700f6069c /lldb/packages/Python/lldbsuite | |
| parent | b95861d35e4c24ce828c4b1e1c9b1470bfeb4111 (diff) | |
| download | llvm-7124c11ad9fef5b767aa94e4ac2c2d5e21c6381d.zip llvm-7124c11ad9fef5b767aa94e4ac2c2d5e21c6381d.tar.gz llvm-7124c11ad9fef5b767aa94e4ac2c2d5e21c6381d.tar.bz2 | |
Decorarte TestInferiorAssert xfails on AArch64 Linux
This patch decorates some of TestInferiorAssert test cases with expectedFailureLinux on AArch64.
llvm-svn: 258930
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py b/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py index bc82427..63d01c1 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py @@ -29,7 +29,7 @@ class AssertingInferiorTestCase(TestBase):          self.inferior_asserting_registers()      @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows") -    @expectedFailureLinux("llvm.org/pr25338", archs=['arm']) +    @expectedFailureLinux("llvm.org/pr25338", archs=['aarch64', 'arm'])      def test_inferior_asserting_disassemble(self):          """Test that lldb reliably disassembles frames after asserting (command)."""          self.build() @@ -43,14 +43,14 @@ class AssertingInferiorTestCase(TestBase):          self.inferior_asserting_python()      @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows") -    @expectedFailureLinux("llvm.org/pr25338", archs=['arm']) +    @expectedFailureLinux("llvm.org/pr25338", archs=['aarch64', 'arm'])      def test_inferior_asserting_expr(self):          """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""          self.build()          self.inferior_asserting_expr()      @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows") -    @expectedFailureLinux("llvm.org/pr25338", archs=['arm']) +    @expectedFailureLinux("llvm.org/pr25338", archs=['aarch64', 'arm'])      def test_inferior_asserting_step(self):          """Test that lldb functions correctly after stepping through a call to assert()."""          self.build() | 
