mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 01:18:52 +08:00
[libcxx] Fix the binder deprecation tests on Clang 5.
Tested on Docker containers with Clang 4, 5 and 6. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@342855 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
// RandomNumberGenerator& rand);
|
// RandomNumberGenerator& rand);
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03, c++11
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -42,14 +43,8 @@ struct gen
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 14
|
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'random_shuffle<int *>' is deprecated}}
|
|
||||||
// expected-error@* 1 {{'random_shuffle<int *, gen &>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
int v[1] = {1};
|
int v[1] = {1};
|
||||||
std::random_shuffle(&v[0], &v[1]);
|
std::random_shuffle(&v[0], &v[1]); // expected-error{{'random_shuffle<int *>' is deprecated}}
|
||||||
gen r;
|
gen r;
|
||||||
std::random_shuffle(&v[0], &v[1], r);
|
std::random_shuffle(&v[0], &v[1], r); // expected-error{{'random_shuffle<int *, gen &>' is deprecated}}
|
||||||
}
|
}
|
||||||
|
@@ -20,6 +20,7 @@
|
|||||||
// Deprecated in C++11
|
// Deprecated in C++11
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -32,14 +33,7 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
typedef std::auto_ptr<int> AP; // expected-error{{'auto_ptr<int>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
typedef std::auto_ptr<void> APV; // expected-error{{'auto_ptr<void>' is deprecated}}
|
||||||
#else
|
typedef std::auto_ptr_ref<int> APR; // expected-error{{'auto_ptr_ref<int>' is deprecated}}
|
||||||
// expected-error@* 1 {{'auto_ptr<int>' is deprecated}}
|
|
||||||
// expected-error@* 1 {{'auto_ptr<void>' is deprecated}}
|
|
||||||
// expected-error@* 1 {{'auto_ptr_ref<int>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
typedef std::auto_ptr<int> AP;
|
|
||||||
typedef std::auto_ptr<void> APV;
|
|
||||||
typedef std::auto_ptr_ref<int> APR;
|
|
||||||
}
|
}
|
||||||
|
@@ -10,6 +10,7 @@
|
|||||||
// <functional>
|
// <functional>
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -33,48 +34,26 @@ struct Foo {
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
typedef std::pointer_to_unary_function<int, int> PUF; // expected-error{{'pointer_to_unary_function<int, int>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
typedef std::pointer_to_binary_function<int, int, int> PBF; // expected-error{{'pointer_to_binary_function<int, int, int>' is deprecated}}
|
||||||
#else
|
std::ptr_fun<int, int>(identity); // expected-error{{'ptr_fun<int, int>' is deprecated}}
|
||||||
// expected-error@* 1 {{'pointer_to_unary_function<int, int>' is deprecated}}
|
std::ptr_fun<int, int, int>(sum); // expected-error{{'ptr_fun<int, int, int>' is deprecated}}
|
||||||
// expected-error@* 1 {{'pointer_to_binary_function<int, int, int>' is deprecated}}
|
|
||||||
// expected-error@* 1 {{'ptr_fun<int, int>' is deprecated}}
|
|
||||||
// expected-error@* 1 {{'ptr_fun<int, int, int>' is deprecated}}
|
|
||||||
|
|
||||||
// expected-error@* 1 {{'mem_fun_t<int, Foo>' is deprecated}}
|
typedef std::mem_fun_t<int, Foo> MFT0; // expected-error{{'mem_fun_t<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 1 {{'mem_fun1_t<int, Foo, int>' is deprecated}}
|
typedef std::mem_fun1_t<int, Foo, int> MFT1; // expected-error{{'mem_fun1_t<int, Foo, int>' is deprecated}}
|
||||||
// expected-error@* 1 {{'const_mem_fun_t<int, Foo>' is deprecated}}
|
typedef std::const_mem_fun_t<int, Foo> CMFT0; // expected-error{{'const_mem_fun_t<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 1 {{'const_mem_fun1_t<int, Foo, int>' is deprecated}}
|
typedef std::const_mem_fun1_t<int, Foo, int> CMFT1; // expected-error{{'const_mem_fun1_t<int, Foo, int>' is deprecated}}
|
||||||
// expected-error@* 2 {{'mem_fun<int, Foo>' is deprecated}}
|
std::mem_fun<int, Foo>(&Foo::zero); // expected-error{{'mem_fun<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 2 {{'mem_fun<int, Foo, int>' is deprecated}}
|
std::mem_fun<int, Foo, int>(&Foo::identity); // expected-error{{'mem_fun<int, Foo, int>' is deprecated}}
|
||||||
|
std::mem_fun<int, Foo>(&Foo::const_zero); // expected-error{{'mem_fun<int, Foo>' is deprecated}}
|
||||||
|
std::mem_fun<int, Foo, int>(&Foo::const_identity); // expected-error{{'mem_fun<int, Foo, int>' is deprecated}}
|
||||||
|
|
||||||
// expected-error@* 1 {{'mem_fun_ref_t<int, Foo>' is deprecated}}
|
typedef std::mem_fun_ref_t<int, Foo> MFR0; // expected-error{{'mem_fun_ref_t<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 1 {{'mem_fun1_ref_t<int, Foo, int>' is deprecated}}
|
typedef std::mem_fun1_ref_t<int, Foo, int> MFR1; // expected-error{{'mem_fun1_ref_t<int, Foo, int>' is deprecated}}
|
||||||
// expected-error@* 1 {{'const_mem_fun_ref_t<int, Foo>' is deprecated}}
|
typedef std::const_mem_fun_ref_t<int, Foo> CMFR0; // expected-error{{'const_mem_fun_ref_t<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 1 {{'const_mem_fun1_ref_t<int, Foo, int>' is deprecated}}
|
typedef std::const_mem_fun1_ref_t<int, Foo, int> CMFR1; // expected-error{{'const_mem_fun1_ref_t<int, Foo, int>' is deprecated}}
|
||||||
// expected-error@* 2 {{'mem_fun_ref<int, Foo>' is deprecated}}
|
std::mem_fun_ref<int, Foo>(&Foo::zero); // expected-error{{'mem_fun_ref<int, Foo>' is deprecated}}
|
||||||
// expected-error@* 2 {{'mem_fun_ref<int, Foo, int>' is deprecated}}
|
std::mem_fun_ref<int, Foo, int>(&Foo::identity); // expected-error{{'mem_fun_ref<int, Foo, int>' is deprecated}}
|
||||||
#endif
|
std::mem_fun_ref<int, Foo>(&Foo::const_zero); // expected-error{{'mem_fun_ref<int, Foo>' is deprecated}}
|
||||||
typedef std::pointer_to_unary_function<int, int> PUF;
|
std::mem_fun_ref<int, Foo, int>(&Foo::const_identity); // expected-error{{'mem_fun_ref<int, Foo, int>' is deprecated}}
|
||||||
typedef std::pointer_to_binary_function<int, int, int> PBF;
|
|
||||||
std::ptr_fun<int, int>(identity);
|
|
||||||
std::ptr_fun<int, int, int>(sum);
|
|
||||||
|
|
||||||
typedef std::mem_fun_t<int, Foo> MFT0;
|
|
||||||
typedef std::mem_fun1_t<int, Foo, int> MFT1;
|
|
||||||
typedef std::const_mem_fun_t<int, Foo> CMFT0;
|
|
||||||
typedef std::const_mem_fun1_t<int, Foo, int> CMFT1;
|
|
||||||
std::mem_fun<int, Foo>(&Foo::zero);
|
|
||||||
std::mem_fun<int, Foo, int>(&Foo::identity);
|
|
||||||
std::mem_fun<int, Foo>(&Foo::const_zero);
|
|
||||||
std::mem_fun<int, Foo, int>(&Foo::const_identity);
|
|
||||||
|
|
||||||
typedef std::mem_fun_ref_t<int, Foo> MFR0;
|
|
||||||
typedef std::mem_fun1_ref_t<int, Foo, int> MFR1;
|
|
||||||
typedef std::const_mem_fun_ref_t<int, Foo> CMFR0;
|
|
||||||
typedef std::const_mem_fun1_ref_t<int, Foo, int> CMFR1;
|
|
||||||
std::mem_fun_ref<int, Foo>(&Foo::zero);
|
|
||||||
std::mem_fun_ref<int, Foo, int>(&Foo::identity);
|
|
||||||
std::mem_fun_ref<int, Foo>(&Foo::const_zero);
|
|
||||||
std::mem_fun_ref<int, Foo, int>(&Foo::const_identity);
|
|
||||||
}
|
}
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
// bind1st
|
// bind1st
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -26,10 +27,5 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
std::bind1st(test_func(1), 5); // expected-error{{'bind1st<test_func, int>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'bind1st<test_func, int>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::bind1st(test_func(1), 5);
|
|
||||||
}
|
}
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
// bind2nd
|
// bind2nd
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -26,10 +27,5 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
std::bind2nd(test_func(1), 5); // expected-error{{'bind2nd<test_func, int>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'bind2nd<test_func, int>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::bind2nd(test_func(1), 5);
|
|
||||||
}
|
}
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
// binder1st
|
// binder1st
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -26,10 +27,5 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
typedef std::binder1st<test_func> B1ST; // expected-error{{'binder1st<test_func>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'binder1st<test_func>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
typedef std::binder1st<test_func> B1ST;
|
|
||||||
}
|
}
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
// binder2nd
|
// binder2nd
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -26,10 +27,5 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
#if TEST_STD_VER < 11
|
typedef std::binder2nd<test_func> B2ND; // expected-error{{'binder2nd<test_func>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'binder2nd<test_func>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
typedef std::binder2nd<test_func> B2ND;
|
|
||||||
}
|
}
|
||||||
|
@@ -13,6 +13,7 @@
|
|||||||
// deprecated in C++17
|
// deprecated in C++17
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -29,11 +30,6 @@ struct Predicate {
|
|||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
#if TEST_STD_VER < 17
|
std::binary_negate<Predicate> f((Predicate())); // expected-error{{'binary_negate<Predicate>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'binary_negate<Predicate>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::binary_negate<Predicate> f((Predicate()));
|
|
||||||
(void)f;
|
(void)f;
|
||||||
}
|
}
|
||||||
|
@@ -13,6 +13,7 @@
|
|||||||
// deprecated in C++17
|
// deprecated in C++17
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -28,10 +29,5 @@ struct Predicate {
|
|||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
#if TEST_STD_VER < 17
|
std::not1(Predicate()); // expected-error{{'not1<Predicate>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'not1<Predicate>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::not1(Predicate());
|
|
||||||
}
|
}
|
||||||
|
@@ -13,6 +13,7 @@
|
|||||||
// deprecated in C++17
|
// deprecated in C++17
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -29,10 +30,5 @@ struct Predicate {
|
|||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
#if TEST_STD_VER < 17
|
std::not2(Predicate()); // expected-error{{'not2<Predicate>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'not2<Predicate>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::not2(Predicate());
|
|
||||||
}
|
}
|
||||||
|
@@ -13,6 +13,7 @@
|
|||||||
// deprecated in C++17
|
// deprecated in C++17
|
||||||
|
|
||||||
// UNSUPPORTED: clang-4.0
|
// UNSUPPORTED: clang-4.0
|
||||||
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
||||||
// REQUIRES: verify-support
|
// REQUIRES: verify-support
|
||||||
|
|
||||||
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
// MODULES_DEFINES: _LIBCPP_ENABLE_DEPRECATION_WARNINGS
|
||||||
@@ -28,11 +29,6 @@ struct Predicate {
|
|||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
#if TEST_STD_VER < 17
|
std::unary_negate<Predicate> f((Predicate())); // expected-error{{'unary_negate<Predicate>' is deprecated}}
|
||||||
// expected-no-diagnostics
|
|
||||||
#else
|
|
||||||
// expected-error@* 1 {{'unary_negate<Predicate>' is deprecated}}
|
|
||||||
#endif
|
|
||||||
std::unary_negate<Predicate> f((Predicate()));
|
|
||||||
(void)f;
|
(void)f;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user