[Lldb-commits] [lldb] r234243 - Enable a test in TestSTL for GCC.

Siva Chandra sivachandra at google.com
Mon Apr 6 14:52:11 PDT 2015


Author: sivachandra
Date: Mon Apr  6 16:52:10 2015
New Revision: 234243

URL: http://llvm.org/viewvc/llvm-project?rev=234243&view=rev
Log:
Enable a test in TestSTL for GCC.

Summary:
Remove @skipIfGcc from a test in TestSTL as that test passes with GCC
now. Also, mark one of the dsym tests with @skipUnlessDarwin in TestSTL.

Test Plan: dotest.py -C gcc -p TestSTL

Reviewers: vharron

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D8793

Modified:
    lldb/trunk/test/lang/cpp/stl/TestSTL.py

Modified: lldb/trunk/test/lang/cpp/stl/TestSTL.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/stl/TestSTL.py?rev=234243&r1=234242&r2=234243&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/stl/TestSTL.py (original)
+++ lldb/trunk/test/lang/cpp/stl/TestSTL.py Mon Apr  6 16:52:10 2015
@@ -31,12 +31,12 @@ class STLTestCase(TestBase):
 
     @python_api_test
     @dsym_test
+    @skipUnlessDarwin
     def test_SBType_template_aspects_with_dsym(self):
         """Test APIs for getting template arguments from an SBType."""
         self.buildDsym()
         self.sbtype_template_apis()
 
-    @skipIfGcc # llvm.org/pr15036: crashes during DWARF parsing when built with GCC
     @expectedFailureIcc # icc 13.1 and 14-beta do not emit DW_TAG_template_type_parameter
     @python_api_test
     @dwarf_test





More information about the lldb-commits mailing list