Skip to content

Commit 024921f

Browse files
committed
test: add libstdc++ __debug check
1 parent a791fe9 commit 024921f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/unordered/TestDataFormatterGenericUnordered.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ def test_with_run_command_libstdcpp(self):
126126
self.build(dictionary={"USE_LIBSTDCPP": 1})
127127
self.do_test_with_run_command()
128128

129+
@add_test_categories(["libstdcxx"])
130+
@expectedFailureAll # unordered __debug containers are not supported yet
131+
def test_with_run_command_libstdcxx_debug(self):
132+
self.build(
133+
dictionary={"USE_LIBSTDCPP": 1, "CXXFLAGS_EXTRAS": "-D_GLIBCXX_DEBUG"}
134+
)
135+
self.do_test_with_run_command()
136+
129137
@add_test_categories(["libc++"])
130138
def test_with_run_command_libcpp(self):
131139
self.build(dictionary={"USE_LIBCPP": 1})

0 commit comments

Comments
 (0)