diff options
author | Davide Italiano <davide@freebsd.org> | 2018-10-30 22:49:22 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2018-10-30 22:49:22 +0000 |
commit | 70ad9c74ae860892004572a141bb3b8ab77878ec (patch) | |
tree | 84b2219cea61c59ac7da2fe3750c80866783cc18 /lldb/packages/Python/lldbsuite/test | |
parent | 88be0d1bafe571bd5f4546cc16f9ec8f3666e739 (diff) | |
download | bcm5719-llvm-70ad9c74ae860892004572a141bb3b8ab77878ec.tar.gz bcm5719-llvm-70ad9c74ae860892004572a141bb3b8ab77878ec.zip |
[testsuite] Skip an already failing test on MacOS.
Due to some libcxx changes to inlining, this now also crashes,
so it gets reported as "failure" by the bot. This commit doesn't
really change the status quo, just placates the bots.
llvm-svn: 345668
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py index 42c372489c6..d11004e66d0 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py @@ -26,6 +26,7 @@ class STLTestCase(TestBase): self.line = line_number( self.source, '// Set break point at this line.') + @skipIf @expectedFailureAll(bugnumber="llvm.org/PR36713") def test(self): """Test some expressions involving STL data types.""" |