forked from OSchip/llvm-project
parent
6c53d8f94c
commit
d697ee41bc
|
@ -15,6 +15,8 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::equal_to<int> F;
|
||||
|
@ -24,7 +26,7 @@ int main()
|
|||
static_assert((std::is_same<bool, F::result_type>::value), "" );
|
||||
assert(f(36, 36));
|
||||
assert(!f(36, 6));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::equal_to<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert(f2(36, 36));
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "pointer_comparison_test_helper.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::greater<int> F;
|
||||
|
@ -25,7 +28,12 @@ int main()
|
|||
assert(!f(36, 36));
|
||||
assert(f(36, 6));
|
||||
assert(!f(6, 36));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
{
|
||||
// test total ordering of int* for greater<int*> and
|
||||
// greater<void>.
|
||||
do_pointer_comparison_test<int, std::greater>();
|
||||
}
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::greater<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert(!f2(36, 36));
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "pointer_comparison_test_helper.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::greater_equal<int> F;
|
||||
|
@ -25,7 +28,12 @@ int main()
|
|||
assert(f(36, 36));
|
||||
assert(f(36, 6));
|
||||
assert(!f(6, 36));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
{
|
||||
// test total ordering of int* for greater_equal<int*> and
|
||||
// greater_equal<void>.
|
||||
do_pointer_comparison_test<int, std::greater_equal>();
|
||||
}
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::greater_equal<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert(f2(36, 36));
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "pointer_comparison_test_helper.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::less<int> F;
|
||||
|
@ -25,7 +28,11 @@ int main()
|
|||
assert(!f(36, 36));
|
||||
assert(!f(36, 6));
|
||||
assert(f(6, 36));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
{
|
||||
// test total ordering of int* for less<int*> and less<void>.
|
||||
do_pointer_comparison_test<int, std::less>();
|
||||
}
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::less<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert(!f2(36, 36));
|
||||
|
|
|
@ -15,6 +15,9 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "pointer_comparison_test_helper.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::less_equal<int> F;
|
||||
|
@ -25,7 +28,12 @@ int main()
|
|||
assert(f(36, 36));
|
||||
assert(!f(36, 6));
|
||||
assert(f(6, 36));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
{
|
||||
// test total ordering of int* for less_equal<int*> and
|
||||
// less_equal<void>.
|
||||
do_pointer_comparison_test<int, std::less_equal>();
|
||||
}
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::less_equal<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert( f2(36, 36));
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include <type_traits>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::not_equal_to<int> F;
|
||||
|
@ -24,7 +26,7 @@ int main()
|
|||
static_assert((std::is_same<bool, F::result_type>::value), "" );
|
||||
assert(!f(36, 36));
|
||||
assert(f(36, 6));
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
#if TEST_STD_VER > 11
|
||||
typedef std::not_equal_to<> F2;
|
||||
const F2 f2 = F2();
|
||||
assert(!f2(36, 36));
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
#ifndef POINTER_COMPARISON_TEST_HELPER_HPP
|
||||
#define POINTER_COMPARISON_TEST_HELPER_HPP
|
||||
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <cstdint>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
template <class T, template<class> class CompareTemplate>
|
||||
void do_pointer_comparison_test() {
|
||||
typedef CompareTemplate<T*> Compare;
|
||||
typedef CompareTemplate<std::uintptr_t> UIntCompare;
|
||||
#if TEST_STD_VER > 11
|
||||
typedef CompareTemplate<void> VoidCompare;
|
||||
#else
|
||||
typedef Compare VoidCompare;
|
||||
#endif
|
||||
std::vector<std::shared_ptr<T> > pointers;
|
||||
const std::size_t test_size = 100;
|
||||
for (int i=0; i < test_size; ++i)
|
||||
pointers.push_back(std::shared_ptr<T>(new T()));
|
||||
Compare comp;
|
||||
UIntCompare ucomp;
|
||||
VoidCompare vcomp;
|
||||
for (int i=0; i < test_size; ++i) {
|
||||
for (int j=0; j < test_size; ++j) {
|
||||
T* lhs = pointers[i].get();
|
||||
T* rhs = pointers[j].get();
|
||||
std::uintptr_t lhs_uint = reinterpret_cast<std::uintptr_t>(lhs);
|
||||
std::uintptr_t rhs_uint = reinterpret_cast<std::uintptr_t>(rhs);
|
||||
assert(comp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
|
||||
assert(vcomp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif // POINTER_COMPARISON_TEST_HELPER_HPP
|
|
@ -205,7 +205,7 @@
|
|||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2192">2192</a></td><td>Validity and return type of <tt>std::abs(0u)</tt> is unclear</td><td>Jacksonville</td><td></td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2276">2276</a></td><td>Missing requirement on <tt>std::promise::set_exception</tt></td><td>Jacksonville</td><td>Complete</td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2296">2296</a></td><td><tt>std::addressof</tt> should be <tt>constexpr</td><td>Jacksonville</td><td>Complete (Clang Only)</td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2450">2450</a></td><td><tt>(greater|less|greater_equal|less_equal)<void></tt> do not yield a total order for pointers</td><td>Jacksonville</td><td></td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2450">2450</a></td><td><tt>(greater|less|greater_equal|less_equal)<void></tt> do not yield a total order for pointers</td><td>Jacksonville</td><td>Complete</td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2520">2520</a></td><td>N4089 broke initializing <tt>unique_ptr<T[]></tt> from a <tt>nullptr</tt></td><td>Jacksonville</td><td>Complete</td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2522">2522</a></td><td>[fund.ts.v2] Contradiction in <tt>set_default_resource</tt> specification</td><td>Jacksonville</td><td>Complete</td></tr>
|
||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2523">2523</a></td><td><tt>std::promise</tt> synopsis shows two <tt>set_value_at_thread_exit()</tt>'s for no apparent reason</td><td>Jacksonville</td><td>Complete</td></tr>
|
||||
|
|
Loading…
Reference in New Issue