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/this/TestCPPThis.py | |
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/this/TestCPPThis.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py index 8fe068cd2b7..1a2a91ba334 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py @@ -11,8 +11,8 @@ class CPPThisTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) #rdar://problem/9962849 - @expectedFailureGcc # llvm.org/pr15439 The 'this' pointer isn't available during expression evaluation when stopped in an inlined member function. - @expectedFailureIcc # ICC doesn't emit correct DWARF inline debug info for inlined member functions + @expectedFailureAll(compiler="gcc", bugnumber="llvm.org/pr15439 The 'this' pointer isn't available during expression evaluation when stopped in an inlined member function") + @expectedFailureAll(compiler="icc", bugnumber="ICC doesn't emit correct DWARF inline debug info for inlined member functions.") @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24489: Name lookup not working correctly on Windows") @expectedFlakeyClang(bugnumber='llvm.org/pr23012', compiler_version=['>=','3.6']) # failed with totclang - clang3.7 def test_with_run_command(self): |