[Lldb-commits] [lldb] r232169 - Skip VectorTypesFormatting test case when using gcc

Tamas Berghammer tberghammer at google.com
Fri Mar 13 07:30:42 PDT 2015


Author: tberghammer
Date: Fri Mar 13 09:30:42 2015
New Revision: 232169

URL: http://llvm.org/viewvc/llvm-project?rev=232169&view=rev
Log:
Skip VectorTypesFormatting test case when using gcc

Gcc don't support the ext_vector_type extension used by the test

Modified:
    lldb/trunk/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py

Modified: lldb/trunk/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py?rev=232169&r1=232168&r2=232169&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py Fri Mar 13 09:30:42 2015
@@ -22,6 +22,7 @@ class VectorTypesFormattingTestCase(Test
 
     # rdar://problem/14035604
     @dwarf_test
+    @skipIfGcc # gcc don't have ext_vector_type extension
     def test_with_dwarf_and_run_command(self):
         """Check that vector types format properly"""
         self.buildDwarf()





More information about the lldb-commits mailing list