Un-skipping test that was disabled due to llvm.org/pr16191

- adding workaround recommended by Greg (-fno-limit-debug-info clang flag)
- filed bug llvm.org/pr16214 against Clang

llvm-svn: 183156
This commit is contained in:
Daniel Malea 2013-06-03 21:42:50 +00:00
parent d1b7cd7765
commit 1d1592624c
2 changed files with 6 additions and 2 deletions

View File

@ -2,4 +2,10 @@ LEVEL = ../../../make
CXX_SOURCES := main.cpp
# Workaround for llvm.org/pr16214: clang doesn't emit structure definition DWARF
# information without the flag below.
ifneq (,$(findstring clang,$(CC)))
CFLAGS_EXTRAS := -fno-limit-debug-info
endif
include $(LEVEL)/Makefile.rules

View File

@ -23,8 +23,6 @@ class Radar9973865DataFormatterTestCase(TestBase):
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Test data formatter commands."""
if "clang" in self.getCompiler() and "3.4" in self.getCompilerVersion():
self.skipTest("llvm.org/pr16191")
self.buildDwarf()
self.data_formatter_commands()