[libcxx-commits] [libcxx] a27f29c - [libc++] Fix typo in REQUIRES that broke the GCC-tot bot configuration

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 4 13:11:44 PST 2020


Author: Louis Dionne
Date: 2020-03-04T16:11:08-05:00
New Revision: a27f29c6e498266fa8d8d38c3c3f74305c684f8d

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

LOG: [libc++] Fix typo in REQUIRES that broke the GCC-tot bot configuration

Explained in https://reviews.llvm.org/D70117#inline-688897.

Added: 
    

Modified: 
    libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/allocate.depr_in_cxx17.fail.cpp

Removed: 
    


################################################################################
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 dada041f62ee..8a2090a9e8ab 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<int> a;
     TEST_IGNORE_NODISCARD a.allocate(3, nullptr); // expected-error {{'allocate' is deprecated}}
 
-  return 0;
+    return 0;
 }


        


More information about the libcxx-commits mailing list