diff options
author | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:15 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:15 +0000 |
commit | 8158a2037ac4485a6f8cdf8594bb98a096eb4ed3 (patch) | |
tree | bc7f75bf0b72450174f95c4e2d663f65aaa77e1f /lldb/packages/Python/lldbsuite/test/lang/cpp/class_static | |
parent | 0c3e00369738f8ad33b6f656412dd05d594d1cfe (diff) | |
download | bcm5719-llvm-8158a2037ac4485a6f8cdf8594bb98a096eb4ed3.tar.gz bcm5719-llvm-8158a2037ac4485a6f8cdf8594bb98a096eb4ed3.zip |
Delete all the xfail / skip decorators for specific compilers.
Ported everything over to using expectedFailureAll.
llvm-svn: 260289
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/class_static')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py index 4b46dc0174b..dabd40533c8 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py @@ -50,9 +50,8 @@ class StaticVariableTestCase(TestBase): startstr = "(int) A::g_points[1].x = 11") @expectedFailureDarwin(9980907) - @expectedFailureClang('Clang emits incomplete debug info.') + @expectedFailureAll(compiler=["clang", "gcc"], bugnumber="Compiler emits incomplete debug info") @expectedFailureFreeBSD('llvm.org/pr20550 failing on FreeBSD-11') - @expectedFailureGcc('GCC emits incomplete debug info.') @add_test_categories(['pyapi']) def test_with_python_api(self): """Test Python APIs on file and class static variables.""" |