diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-10-18 19:18:41 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-10-18 19:18:41 +0000 |
commit | 5c28d49314c7bb84f08c9db3acd5ff64e1c4bc2d (patch) | |
tree | 3b1cb9496cf4bde6d43db6668d043dd819298578 /lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py | |
parent | bb7dd55f675f156c26b98bd7e411a46412cb15d2 (diff) | |
download | bcm5719-llvm-5c28d49314c7bb84f08c9db3acd5ff64e1c4bc2d.tar.gz bcm5719-llvm-5c28d49314c7bb84f08c9db3acd5ff64e1c4bc2d.zip |
[lldb][NFC] Remove wrong tests in TestCallOverriddenMethod
We call these tests in the second test function where they are
x-failed on Windows. I forgot to remove the tests from the first
test function (which is not x-failed on Windows) when extracting these
calls into their own test function, so the test is still failing on Windows.
llvm-svn: 375271
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py b/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py index f630aef9e51..09369f43819 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/call-overridden-method/TestCallOverriddenMethod.py @@ -50,10 +50,6 @@ class ExprCommandCallOverriddenMethod(TestBase): # Test calling the base class. self.expect("expr realbase.foo()", substrs=["1"]) - # Test with locally constructed instances. - self.expect("expr Base().foo()", substrs=["1"]) - self.expect("expr Derived().foo()", substrs=["2"]) - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr43707") def test_call_on_temporary(self): """Test calls to overridden methods in derived classes.""" |