[libcxx-commits] [libcxx] 7454e1f - [libc++] Fix a debug-hardening	test that requires C++17
    Louis Dionne via libcxx-commits 
    libcxx-commits at lists.llvm.org
       
    Wed Aug 27 14:03:53 PDT 2025
    
    
  
Author: Louis Dionne
Date: 2025-08-27T17:03:43-04:00
New Revision: 7454e1f6bd1e229db376166ac478e830705be7c0
URL: https://github.com/llvm/llvm-project/commit/7454e1f6bd1e229db376166ac478e830705be7c0
DIFF: https://github.com/llvm/llvm-project/commit/7454e1f6bd1e229db376166ac478e830705be7c0.diff
LOG: [libc++] Fix a debug-hardening test that requires C++17
We only support <filesystem> starting with C++17.
Added: 
    
Modified: 
    libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/assert.iterator.pass.cpp
Removed: 
    
################################################################################
diff  --git a/libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/assert.iterator.pass.cpp b/libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/assert.iterator.pass.cpp
index 38047957de8e5..3ca97ae8e9a4f 100644
--- a/libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/assert.iterator.pass.cpp
+++ b/libcxx/test/libcxx/input.output/filesystems/class.path/path.itr/assert.iterator.pass.cpp
@@ -7,7 +7,7 @@
 //===----------------------------------------------------------------------===//
 
 // REQUIRES: has-unix-headers
-// UNSUPPORTED: c++03
+// UNSUPPORTED: c++03, c++11, c++14
 // UNSUPPORTED: !libcpp-hardening-mode=debug
 // XFAIL: libcpp-hardening-mode=debug && availability-verbose_abort-missing
 
        
    
    
More information about the libcxx-commits
mailing list