[libcxx-commits] [PATCH] D101676: [libc++] [LIBCXX-DEBUG-FIXME] Iterating a string::iterator "off the end" is UB.

Arthur O'Dwyer via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed May 5 13:23:57 PDT 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rG12dd9cdf1a82: [libc++] [LIBCXX-DEBUG-FIXME] Iterating a string::iterator "off the end" is UB. (authored by arthur.j.odwyer).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101676/new/

https://reviews.llvm.org/D101676

Files:
  libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp


Index: libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp
===================================================================
--- libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp
+++ libcxx/test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp
@@ -6,8 +6,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-// XFAIL: LIBCXX-DEBUG-FIXME
-
 // UNSUPPORTED: c++03
 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
 
@@ -44,7 +42,7 @@
     assert(p == In1);
   }
   {
-    path p = fs::u8path(In3);
+    path p = fs::u8path(In2.data());
     assert(p == In1);
   }
   {
@@ -67,7 +65,7 @@
     assert(p == In1);
   }
   {
-    path p = fs::u8path(u8In3);
+    path p = fs::u8path(u8In2.data());
     assert(p == In1);
   }
   {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D101676.343162.patch
Type: text/x-patch
Size: 890 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210505/16855f4e/attachment.bin>


More information about the libcxx-commits mailing list