From a27f29c6e498266fa8d8d38c3c3f74305c684f8d Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Wed, 4 Mar 2020 16:10:30 -0500 Subject: [PATCH] [libc++] Fix typo in REQUIRES that broke the GCC-tot bot configuration Explained in https://reviews.llvm.org/D70117#inline-688897. --- .../allocator.members/allocate.depr_in_cxx17.fail.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/allocate.depr_in_cxx17.fail.cpp b/libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/allocate.depr_in_cxx17.fail.cpp index dada041..8a2090a 100644 --- a/libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/allocate.depr_in_cxx17.fail.cpp +++ b/libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/allocate.depr_in_cxx17.fail.cpp @@ -14,7 +14,7 @@ // Deprecated in C++17 // UNSUPPORTED: c++98, c++03, c++11, c++14 -// REQUIERS: verify-support +// REQUIRES: verify-support // MODULES_DEFINES: _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS #define _LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS @@ -27,5 +27,5 @@ int main(int, char**) std::allocator a; TEST_IGNORE_NODISCARD a.allocate(3, nullptr); // expected-error {{'allocate' is deprecated}} - return 0; + return 0; } -- 2.7.4