diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-09 19:07:14 +0500 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-09 19:08:59 +0500 |
commit | 0964733bae2d0823f7b431ee2b16a3fd1dd993e3 (patch) | |
tree | 808e427c39aa834d804b37b482f07cb412109ab3 /lldb/packages/Python/lldbsuite/test/lang/c | |
parent | 281539053238ff17054c101efcf969ab1b6f52f3 (diff) | |
download | bcm5719-llvm-0964733bae2d0823f7b431ee2b16a3fd1dd993e3.tar.gz bcm5719-llvm-0964733bae2d0823f7b431ee2b16a3fd1dd993e3.zip |
[lldb] Remove Xfail decorators from steadily passing tests
This patch removes xfail decorator from some lldb testcases which are
passing steadily now for past few week/months on aarch64/linux buildbot.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/c')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py | 7 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py index 59779081006..5aacd67a067 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py @@ -25,13 +25,6 @@ class ConstVariableTestCase(TestBase): @expectedFailureAll(oslist=["freebsd", "linux"], compiler="icc") @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el']) @expectedFailureAll( - oslist=["linux"], - archs=[ - 'arm', - 'aarch64'], - triple=no_match(".*-android"), - bugnumber="llvm.org/pr27883") - @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows") @expectedFailureNetBSD diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py b/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py index 61657e751fd..4956744a84b 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py @@ -22,10 +22,6 @@ class GlobalVariablesTestCase(TestBase): self.shlib_names = ["a"] @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764") - @expectedFailureAll(oslist=["linux"], - archs=["aarch64"], - triple=no_match(".*-android"), - bugnumber="llvm.org/pr37301") def test_without_process(self): """Test that static initialized variables can be inspected without process.""" |