[Lldb-commits] [lldb] r185576 - Skip Test-rdar-9974002 with Clang 3.4 (due to llvm.org/pr16214)

Daniel Malea daniel.malea at intel.com
Wed Jul 3 13:44:40 PDT 2013


Author: dmalea
Date: Wed Jul  3 15:44:40 2013
New Revision: 185576

URL: http://llvm.org/viewvc/llvm-project?rev=185576&view=rev
Log:
Skip Test-rdar-9974002 with Clang 3.4 (due to llvm.org/pr16214)
- should resolve remaining failures on clang buildbot


Modified:
    lldb/trunk/test/functionalities/data-formatter/rdar-9974002/Test-rdar-9974002.py

Modified: lldb/trunk/test/functionalities/data-formatter/rdar-9974002/Test-rdar-9974002.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/data-formatter/rdar-9974002/Test-rdar-9974002.py?rev=185576&r1=185575&r2=185576&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/data-formatter/rdar-9974002/Test-rdar-9974002.py (original)
+++ lldb/trunk/test/functionalities/data-formatter/rdar-9974002/Test-rdar-9974002.py Wed Jul  3 15:44:40 2013
@@ -34,6 +34,9 @@ class Radar9974002DataFormatterTestCase(
 
     def data_formatter_commands(self):
         """Test that that file and class static variables display correctly."""
+        if "clang" in self.getCompiler() and "3.4" in self.getCompilerVersion():
+            self.skipTest("llvm.org/pr16214 -- clang emits partial DWARF for structures referenced via typedef")
+
         self.runCmd("file a.out", CURRENT_EXECUTABLE_SET)
 
         lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.line, num_expected_locations=1, loc_exact=True)





More information about the lldb-commits mailing list