[Lldb-commits] [lldb] r219032 - These two tests were failing on the FreeBSD bot - one has to assume because FreeBSD comes with libc++. Skip them
Enrico Granata
egranata at apple.com
Fri Oct 3 15:33:03 PDT 2014
Author: enrico
Date: Fri Oct 3 17:33:03 2014
New Revision: 219032
URL: http://llvm.org/viewvc/llvm-project?rev=219032&view=rev
Log:
These two tests were failing on the FreeBSD bot - one has to assume because FreeBSD comes with libc++. Skip them
Modified:
lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
Modified: lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py?rev=219032&r1=219031&r2=219032&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py Fri Oct 3 17:33:03 2014
@@ -23,6 +23,7 @@ class StdMapDataFormatterTestCase(TestBa
# assert DeclCXX.h:554 queried property of class with no definition
@expectedFailureIcc # llvm.org/pr15301: LLDB prints incorrect size of
# libstdc++ containers
+ @skipIfFreeBSD
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test data formatter commands."""
Modified: lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py?rev=219032&r1=219031&r2=219032&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py Fri Oct 3 17:33:03 2014
@@ -20,6 +20,7 @@ class StdVectorDataFormatterTestCase(Tes
self.data_formatter_commands()
@dwarf_test
+ @skipIfFreeBSD
@expectedFailureIcc # llvm.org/pr15301 LLDB prints incorrect sizes of STL containers
@expectedFailureGcc # llvm.org/pr17499 The data formatter cannot parse STL containers
def test_with_dwarf_and_run_command(self):
More information about the lldb-commits
mailing list