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/virtual/TestVirtual.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/virtual/TestVirtual.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py index 40ae3f13e1b..3dc487fa304 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py @@ -32,7 +32,7 @@ class CppVirtualMadness(TestBase): self.source = 'main.cpp' self.line = line_number(self.source, '// Set first breakpoint here.') - @expectedFailureIcc('llvm.org/pr16808') # lldb does not call the correct virtual function with icc + @expectedFailureAll(compiler="icc", bugnumber="llvm.org/pr16808 lldb does not call the correct virtual function with icc.") @expectedFailureAll(oslist=['windows']) def test_virtual_madness(self): """Test that expression works correctly with virtual inheritance as well as virtual function.""" |