Skip to content

Commit a948a0a

Browse files
committed
[libc++] Mark a failing test.
The tests fails in debug mode since it manipulates an iterator to a `std::string` returned from the dylib. This is a known issue for the debug iterators. Updating the libc++ Docker image to Ubuntu Focal caused some breakage. This was temporary disabled in D112737. This re-enables one of these tests. Reviewed By: ldionne, #libc, Quuxplusone Differential Revision: https://reviews.llvm.org/D113139
1 parent 3ca520f commit a948a0a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

libcxx/test/std/utilities/format/format.functions/locale-specific_form.pass.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@
1010
// UNSUPPORTED: libcpp-has-no-localization
1111
// UNSUPPORTED: libcpp-has-no-incomplete-format
1212

13-
// TODO(mordante): Investigate these localization/format failures since updating the Docker image in CI
14-
// UNSUPPORTED: stdlib=libc++
13+
// The issue is caused in __format_spec::__determine_grouping().
14+
// There a string iterator is modified. The string is returned
15+
// from the dylib's use_facet<numpunct<_CharT>>::grouping()
16+
// XFAIL: LIBCXX-DEBUG-FIXME
17+
18+
// TODO FMT Evaluate gcc-11 status
19+
// UNSUPPORTED: gcc-11
1520

1621
// REQUIRES: locale.en_US.UTF-8
1722

0 commit comments

Comments
 (0)