Skip to content

Commit d723ad5

Browse files
committed
Enable libc++ in the build for libcxx initializerlist pretty printers
Differential Revision: https://reviews.llvm.org/D112163
1 parent aee4925 commit d723ad5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
CXX_SOURCES := main.cpp
22
CXXFLAGS_EXTRAS := -std=c++11
33

4+
USE_LIBCPP := 1
5+
46
include Makefile.rules

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ class InitializerListTestCase(TestBase):
1414

1515
mydir = TestBase.compute_mydir(__file__)
1616

17-
@skipIfWindows # libc++ not ported to Windows yet
18-
@skipIf(compiler="gcc")
19-
@expectedFailureAll(
20-
oslist=["linux"],
21-
bugnumber="fails on clang 3.5 and tot")
17+
@add_test_categories(["libc++"])
2218
def test(self):
2319
"""Test that that file and class static variables display correctly."""
2420
self.build()

0 commit comments

Comments
 (0)