diff options
author | Michal Gorny <mgorny@gentoo.org> | 2019-03-09 12:47:38 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2019-03-09 12:47:38 +0000 |
commit | 377d9dc8728af681c3a302fa0a0a64fc0810f62f (patch) | |
tree | aa49a94debf9ccef237908e8d8dfc52f9c33e62a /lldb/packages/Python/lldbsuite/test | |
parent | 62c8a57a7475eb81417f6fb087a6e89d5b0035ab (diff) | |
download | bcm5719-llvm-377d9dc8728af681c3a302fa0a0a64fc0810f62f.tar.gz bcm5719-llvm-377d9dc8728af681c3a302fa0a0a64fc0810f62f.zip |
[lldb] [test] Adjust XFAIL list to match buildbot results
Adjust the XFAIL-ing tests to match consistent results from buildbot.
I'm going to work on differences between them and my local results
following this.
llvm-svn: 355774
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
3 files changed, 2 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py b/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py index 5eb75a92323..db855f6302d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py @@ -23,7 +23,6 @@ class LongjmpTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr17214 @expectedFailureAll(oslist=["linux"], bugnumber="llvm.org/pr20231") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") - @expectedFailureNetBSD def test_step_out(self): """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out.""" self.build() @@ -33,7 +32,6 @@ class LongjmpTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr17214 @expectedFailureAll(oslist=["linux"], bugnumber="llvm.org/pr20231") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") - @expectedFailureNetBSD def test_step_over(self): """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-over a longjmp.""" self.build() @@ -43,7 +41,6 @@ class LongjmpTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr17214 @expectedFailureAll(oslist=["linux"], bugnumber="llvm.org/pr20231") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") - @expectedFailureNetBSD def test_step_back_out(self): """Test stepping when the inferior calls setjmp/longjmp, in particular, thread step-out after thread step-in.""" self.build() diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py b/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py index ec0ac826c61..44452b7ded9 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py @@ -173,7 +173,6 @@ class ProcessLaunchTestCase(TestBase): if not success: self.fail(err_msg) - @expectedFailureNetBSD def test_environment_with_special_char(self): """Test that environment variables containing '*' and '}' are handled correctly by the inferior.""" source = 'print_env.cpp' diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py index ba924683ad7..54f71f49dfa 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py @@ -24,6 +24,7 @@ class BitfieldsTestCase(TestBase): # BitFields exhibit crashes in record layout on Windows # (http://llvm.org/pr21800) @skipIfWindows + @expectedFailureNetBSD def test_and_run_command(self): """Test 'frame variable ...' on a variable with bitfields.""" self.build() @@ -152,6 +153,7 @@ class BitfieldsTestCase(TestBase): # BitFields exhibit crashes in record layout on Windows # (http://llvm.org/pr21800) @skipIfWindows + @expectedFailureNetBSD def test_and_python_api(self): """Use Python APIs to inspect a bitfields variable.""" self.build() |