[Lldb-commits] [lldb] r232403 - Skip TestDataFormatterStdMap on linux instead of xfailing.
Siva Chandra
sivachandra at google.com
Mon Mar 16 12:56:36 PDT 2015
Author: sivachandra
Date: Mon Mar 16 14:56:36 2015
New Revision: 232403
URL: http://llvm.org/viewvc/llvm-project?rev=232403&view=rev
Log:
Skip TestDataFormatterStdMap on linux instead of xfailing.
Summary:
After 7181dae1248cc1b03505cca1b7c6e3dfeffefc0a, this test progresses
much further but crashes. Will skip this test while I fix this properly.
Test Plan: dotest.py -p TestDataFormatterStdMap
Reviewers: vharron
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D8361
Modified:
lldb/trunk/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.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=232403&r1=232402&r2=232403&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 Mon Mar 16 14:56:36 2015
@@ -24,10 +24,10 @@ class StdMapDataFormatterTestCase(TestBa
@expectedFailureIcc # llvm.org/pr15301: LLDB prints incorrect size of
# libstdc++ containers
@skipIfFreeBSD
- @expectedFailureLinux # non-core functionality, need to reenable and fix
- # later (DES 2014.11.07). Most likely failing because
- # of mis-match is version of libstdc++ supported by
- # the data-formatters.
+ @skipIfLinux # non-core functionality, need to reenable and fix
+ # later (DES 2014.11.07). Most likely failing because
+ # of mis-match is version of libstdc++ supported by
+ # the data-formatters.
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test data formatter commands."""
More information about the lldb-commits
mailing list