Enable libc++ in the build for libcxx initializerlist pretty printers

Differential Revision: https://reviews.llvm.org/D112163
This commit is contained in:
David Blaikie 2021-10-20 11:05:40 -07:00
parent aee4925507
commit d723ad5bcf
2 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,6 @@
CXX_SOURCES := main.cpp
CXXFLAGS_EXTRAS := -std=c++11
USE_LIBCPP := 1
include Makefile.rules

View File

@ -14,11 +14,7 @@ class InitializerListTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@skipIfWindows # libc++ not ported to Windows yet
@skipIf(compiler="gcc")
@expectedFailureAll(
oslist=["linux"],
bugnumber="fails on clang 3.5 and tot")
@add_test_categories(["libc++"])
def test(self):
"""Test that that file and class static variables display correctly."""
self.build()