[libcxx-commits] [libcxx] 84dbcdd - [libc++] Fix the build for AppleClang.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Sat Feb 20 04:54:54 PST 2021


Author: Mark de Wever
Date: 2021-02-20T13:54:46+01:00
New Revision: 84dbcdd5ffa38345c617ca780d6e760beb69a96d

URL: https://github.com/llvm/llvm-project/commit/84dbcdd5ffa38345c617ca780d6e760beb69a96d
DIFF: https://github.com/llvm/llvm-project/commit/84dbcdd5ffa38345c617ca780d6e760beb69a96d.diff

LOG: [libc++] Fix the build for AppleClang.

Forgot to add some parts of D93593, this should disable the tests on
Apple. Seems Louis was right ;-)

Added: 
    

Modified: 
    libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp
    libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp

Removed: 
    


################################################################################
diff  --git a/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp b/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp
index 734dc417694b..a2468761390d 100644
--- a/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp
+++ b/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/check_arg_id.pass.cpp
@@ -6,6 +6,7 @@
 //===----------------------------------------------------------------------===//
 
 // UNSUPPORTED: c++03, c++11, c++14, c++17
+// UNSUPPORTED: libcpp-no-concepts
 // UNSUPPORTED: no-exceptions
 
 // This test requires the dylib support introduced in D92214.

diff  --git a/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp b/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp
index 77197ad0500e..7caa72783ff6 100644
--- a/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp
+++ b/libcxx/test/std/utilities/format/format.formatter/format.parse.ctx/next_arg_id.pass.cpp
@@ -6,6 +6,7 @@
 //===----------------------------------------------------------------------===//
 
 // UNSUPPORTED: c++03, c++11, c++14, c++17
+// UNSUPPORTED: libcpp-no-concepts
 // UNSUPPORTED: no-exceptions
 
 // This test requires the dylib support introduced in D92214.


        


More information about the libcxx-commits mailing list