First
This commit is contained in:
@@ -0,0 +1,915 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Copyright (c) Electronic Arts Inc. All rights reserved.
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "EASTLTest.h"
|
||||
#include <EASTL/utility.h>
|
||||
#include <EAStdC/EAString.h>
|
||||
|
||||
struct BasicObject
|
||||
{
|
||||
int mX;
|
||||
BasicObject(int x) : mX(x) {}
|
||||
};
|
||||
|
||||
inline bool operator==(const BasicObject& t1, const BasicObject& t2) { return t1.mX == t2.mX; }
|
||||
|
||||
inline bool operator<(const BasicObject& t1, const BasicObject& t2) { return t1.mX < t2.mX; }
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// TestUtilityPair
|
||||
//
|
||||
static int TestUtilityPair()
|
||||
{
|
||||
using namespace eastl;
|
||||
|
||||
int nErrorCount = 0;
|
||||
|
||||
{
|
||||
int _0 = 0, _2 = 2, _3 = 3;
|
||||
float _1f = 1.f;
|
||||
|
||||
// pair();
|
||||
pair<int, float> ifPair1;
|
||||
EATEST_VERIFY((ifPair1.first == 0) && (ifPair1.second == 0.f));
|
||||
|
||||
// pair(const T1& x, const T2& y);
|
||||
pair<int, float> ifPair2(_0, _1f);
|
||||
EATEST_VERIFY((ifPair2.first == 0) && (ifPair2.second == 1.f));
|
||||
|
||||
// template <typename U, typename V>
|
||||
// pair(U&& u, V&& v);
|
||||
pair<int, float> ifPair3(int(0), float(1.f));
|
||||
EATEST_VERIFY((ifPair3.first == 0) && (ifPair3.second == 1.f));
|
||||
|
||||
// template <typename U>
|
||||
// pair(U&& x, const T2& y);
|
||||
const float fConst1 = 1.f;
|
||||
pair<int, float> ifPair4(int(0), fConst1);
|
||||
EATEST_VERIFY((ifPair4.first == 0) && (ifPair4.second == 1.f));
|
||||
|
||||
// template <typename V>
|
||||
// pair(const T1& x, V&& y);
|
||||
const int intConst0 = 0;
|
||||
pair<int, float> ifPair5(intConst0, float(1.f));
|
||||
EATEST_VERIFY((ifPair5.first == 0) && (ifPair5.second == 1.f));
|
||||
|
||||
pair<const int, const int> constIntPair(_2, _3);
|
||||
EATEST_VERIFY((constIntPair.first == 2) && (constIntPair.second == 3));
|
||||
|
||||
// pair(const pair&) = default;
|
||||
pair<int, float> ifPair2Copy(ifPair2);
|
||||
EATEST_VERIFY((ifPair2Copy.first == 0) && (ifPair2Copy.second == 1.f));
|
||||
|
||||
pair<const int, const int> constIntPairCopy(constIntPair);
|
||||
EATEST_VERIFY((constIntPairCopy.first == 2) && (constIntPairCopy.second == 3));
|
||||
|
||||
// template<typename U, typename V>
|
||||
// pair(const pair<U, V>& p);
|
||||
pair<long, double> idPair2(ifPair2);
|
||||
EATEST_VERIFY((idPair2.first == 0) && (idPair2.second == 1.0));
|
||||
|
||||
// pair(pair&& p);
|
||||
|
||||
// template<typename U, typename V>
|
||||
// pair(pair<U, V>&& p);
|
||||
|
||||
// pair& operator=(const pair& p);
|
||||
|
||||
// template<typename U, typename V>
|
||||
// pair& operator=(const pair<U, V>& p);
|
||||
|
||||
// pair& operator=(pair&& p);
|
||||
|
||||
// template<typename U, typename V>
|
||||
// pair& operator=(pair<U, V>&& p);
|
||||
|
||||
// void swap(pair& p);
|
||||
|
||||
// use_self, use_first, use_second
|
||||
use_self<pair<int, float> > usIFPair;
|
||||
use_first<pair<int, float> > u1IFPair;
|
||||
use_second<pair<int, float> > u2IFPair;
|
||||
|
||||
ifPair2 = usIFPair(ifPair2);
|
||||
EATEST_VERIFY((ifPair2.first == 0) && (ifPair2.second == 1));
|
||||
|
||||
int first = u1IFPair(ifPair2);
|
||||
EATEST_VERIFY(first == 0);
|
||||
|
||||
float second = u2IFPair(ifPair2);
|
||||
EATEST_VERIFY(second == 1);
|
||||
|
||||
// make_pair
|
||||
pair<int, float> p1 = make_pair(int(0), float(1));
|
||||
EATEST_VERIFY((p1.first == 0) && (p1.second == 1.f));
|
||||
|
||||
pair<int, float> p2 = make_pair_ref(int(0), float(1));
|
||||
EATEST_VERIFY((p2.first == 0) && (p2.second == 1.f));
|
||||
|
||||
pair<const char*, int> p3 = eastl::make_pair("a", 1);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p3.first, "a") == 0) && (p3.second == 1));
|
||||
|
||||
pair<const char*, int> p4 = eastl::make_pair<const char*, int>("a", 1);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p4.first, "a") == 0) && (p4.second == 1));
|
||||
|
||||
pair<int, const char*> p5 = eastl::make_pair<int, const char*>(1, "b");
|
||||
EATEST_VERIFY((p5.first == 1) && (EA::StdC::Strcmp(p5.second, "b") == 0));
|
||||
|
||||
#if defined(EA_COMPILER_HAS_THREE_WAY_COMPARISON)
|
||||
pair<int, int> p6 = eastl::make_pair<int, int>(1, 2);
|
||||
pair<int, int> p7 = eastl::make_pair<int, int>(2, 1);
|
||||
pair<int, int> p8 = eastl::make_pair<int, int>(7, 8);
|
||||
pair<int, int> p9 = eastl::make_pair<int, int>(10, 1);
|
||||
|
||||
EATEST_VERIFY( (p6 <=> p7) != 0);
|
||||
EATEST_VERIFY( (p6 <=> p6) == 0);
|
||||
EATEST_VERIFY( (p7 <=> p8) < 0);
|
||||
EATEST_VERIFY( (p7 <=> p8) <= 0);
|
||||
EATEST_VERIFY( (p9 <=> p8) > 0);
|
||||
EATEST_VERIFY( (p9 <=> p8) >= 0);
|
||||
#endif
|
||||
|
||||
#if !defined(EA_COMPILER_NO_AUTO)
|
||||
auto p60 = eastl::make_pair("a", "b"); // Different strings of same length of 1.
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p60.first, "a") == 0) && (EA::StdC::Strcmp(p60.second, "b") == 0));
|
||||
|
||||
auto p61 = eastl::make_pair("ab", "cd"); // Different strings of same length > 1.
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p61.first, "ab") == 0) && (EA::StdC::Strcmp(p61.second, "cd") == 0));
|
||||
|
||||
auto p62 = eastl::make_pair("abc", "bcdef"); // Different strings of different length.
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p62.first, "abc") == 0) && (EA::StdC::Strcmp(p62.second, "bcdef") == 0));
|
||||
|
||||
char strA[] = "a";
|
||||
auto p70 = eastl::make_pair(strA, strA);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p70.first, "a") == 0) && (EA::StdC::Strcmp(p70.second, "a") == 0));
|
||||
|
||||
char strBC[] = "bc";
|
||||
auto p71 = eastl::make_pair(strA, strBC);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p71.first, "a") == 0) && (EA::StdC::Strcmp(p71.second, "bc") == 0));
|
||||
|
||||
const char cstrA[] = "a";
|
||||
auto p80 = eastl::make_pair(cstrA, cstrA);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p80.first, "a") == 0) && (EA::StdC::Strcmp(p80.second, "a") == 0));
|
||||
|
||||
const char cstrBC[] = "bc";
|
||||
auto p81 = eastl::make_pair(cstrA, cstrBC);
|
||||
EATEST_VERIFY((EA::StdC::Strcmp(p81.first, "a") == 0) && (EA::StdC::Strcmp(p81.second, "bc") == 0));
|
||||
#endif
|
||||
}
|
||||
|
||||
{
|
||||
// One-off tests and regressions
|
||||
|
||||
#if EASTL_PAIR_CONFORMANCE // See http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#811
|
||||
pair<char*, char*> zeroLiteralPair(0, 0);
|
||||
EATEST_VERIFY((zeroLiteralPair.first == NULL) && (zeroLiteralPair.second == NULL));
|
||||
#endif
|
||||
|
||||
// template<typename U>
|
||||
// pair(U&& x, const T2& y)
|
||||
typedef eastl::pair<uint16_t, const char8_t*> LCIDMapping;
|
||||
LCIDMapping lcidMappingArray[1] = {LCIDMapping(0x0036, EA_CHAR8("af"))}; // Note that 0x0036 is of type int.
|
||||
EATEST_VERIFY((lcidMappingArray[0].first == 0x0036));
|
||||
|
||||
// template<typename V>
|
||||
// pair(const T1& x, V&& y)
|
||||
typedef eastl::pair<const char8_t*, uint16_t> LCIDMapping2;
|
||||
LCIDMapping2 lcidMapping2Array[1] = {LCIDMapping2(EA_CHAR8("af"), 0x0036)};
|
||||
EATEST_VERIFY((lcidMapping2Array[0].second == 0x0036));
|
||||
|
||||
// The following code was giving an EDG compiler:
|
||||
// error 145: a value of type "int" cannot be used to initialize
|
||||
// an entity of type "void *" second(eastl::forward<V>(v)) {}
|
||||
// template <typename U, typename V>
|
||||
// pair(U&& u, V&& v);
|
||||
#if EASTL_PAIR_CONFORMANCE
|
||||
typedef eastl::pair<float*, void*> TestPair1;
|
||||
float fOne = 1.f;
|
||||
TestPair1 testPair1(&fOne, NULL);
|
||||
EATEST_VERIFY(*testPair1.first == 1.f);
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifndef EA_COMPILER_NO_STRUCTURED_BINDING
|
||||
// pair structured bindings test
|
||||
{
|
||||
eastl::pair<int, int> t = {1,2};
|
||||
auto [x,y] = t;
|
||||
EATEST_VERIFY(x == 1);
|
||||
EATEST_VERIFY(y == 2);
|
||||
}
|
||||
|
||||
{
|
||||
auto t = eastl::make_pair(1, 2);
|
||||
auto [x,y] = t;
|
||||
EATEST_VERIFY(x == 1);
|
||||
EATEST_VERIFY(y == 2);
|
||||
}
|
||||
|
||||
{ // reported user-regression structured binding unpacking for iterators
|
||||
eastl::vector<int> v = {1,2,3,4,5,6};
|
||||
auto t = eastl::make_pair(v.begin(), v.end() - 1);
|
||||
auto [x,y] = t;
|
||||
EATEST_VERIFY(*x == 1);
|
||||
EATEST_VERIFY(*y == 6);
|
||||
}
|
||||
|
||||
{ // reported user-regression structured binding unpacking for iterators
|
||||
eastl::vector<int> v = {1,2,3,4,5,6};
|
||||
auto t = eastl::make_pair(v.begin(), v.end());
|
||||
auto [x,y] = t;
|
||||
EATEST_VERIFY(*x == 1);
|
||||
EA_UNUSED(y);
|
||||
}
|
||||
|
||||
{ // reported user-regression for const structured binding unpacking for iterators
|
||||
eastl::vector<int> v = {1,2,3,4,5,6};
|
||||
const auto [x,y] = eastl::make_pair(v.begin(), v.end());;
|
||||
EATEST_VERIFY(*x == 1);
|
||||
EA_UNUSED(y);
|
||||
}
|
||||
#endif
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// TestUtilityRelops
|
||||
//
|
||||
static int TestUtilityRelops()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
{
|
||||
using namespace eastl::rel_ops; // Defines default versions of operators !=, <, >, <=, >= based on == and <.
|
||||
|
||||
BasicObject bo1(1), bo2(2);
|
||||
|
||||
EATEST_VERIFY(!(bo1 == bo2));
|
||||
EATEST_VERIFY((bo1 != bo2));
|
||||
EATEST_VERIFY((bo1 < bo2));
|
||||
EATEST_VERIFY(!(bo1 > bo2));
|
||||
EATEST_VERIFY((bo1 <= bo2));
|
||||
EATEST_VERIFY(!(bo1 >= bo2));
|
||||
}
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
// ThrowSwappable
|
||||
struct ThrowSwappable
|
||||
{
|
||||
};
|
||||
|
||||
void swap(ThrowSwappable& x, ThrowSwappable& y) EA_NOEXCEPT_IF(false)
|
||||
{
|
||||
ThrowSwappable temp(x);
|
||||
x = y;
|
||||
y = temp;
|
||||
|
||||
#if EASTL_EXCEPTIONS_ENABLED
|
||||
throw int();
|
||||
#endif
|
||||
}
|
||||
|
||||
#if EASTL_TYPE_TRAIT_is_nothrow_swappable_CONFORMANCE
|
||||
// NoThrowSwappable
|
||||
struct NoThrowSwappable
|
||||
{
|
||||
};
|
||||
|
||||
void swap(NoThrowSwappable& x, NoThrowSwappable& y) EA_NOEXCEPT_IF(true)
|
||||
{
|
||||
NoThrowSwappable temp(x);
|
||||
x = y;
|
||||
y = temp;
|
||||
}
|
||||
#endif
|
||||
|
||||
struct Swappable1 {};
|
||||
struct Swappable2 {};
|
||||
struct Swappable3 {};
|
||||
void swap(Swappable1&, Swappable2&) {}
|
||||
void swap(Swappable2&, Swappable1&) {}
|
||||
void swap(Swappable1&, Swappable3&) {} // intentionally missing 'swap(Swappable3, Swappable1)'
|
||||
|
||||
|
||||
static int TestUtilitySwap()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
// is_swappable
|
||||
// is_nothrow_swappable
|
||||
#if EASTL_TYPE_TRAIT_is_swappable_CONFORMANCE
|
||||
static_assert((eastl::is_swappable<int>::value == true), "is_swappable failure");
|
||||
static_assert((eastl::is_swappable<eastl::vector<int> >::value == true), "is_swappable failure");
|
||||
static_assert((eastl::is_swappable<ThrowSwappable>::value == true), "is_swappable failure");
|
||||
#if EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
static_assert((eastl::is_swappable_v<int> == true), "is_swappable failure");
|
||||
static_assert((eastl::is_swappable_v<eastl::vector<int> > == true), "is_swappable failure");
|
||||
static_assert((eastl::is_swappable_v<ThrowSwappable> == true), "is_swappable failure");
|
||||
#endif
|
||||
// Need to come up with a class that's not swappable. How do we do that, given the universal swap template?
|
||||
// static_assert((eastl::is_swappable<?>::value == false), "is_swappable failure");
|
||||
#endif
|
||||
|
||||
#if EASTL_TYPE_TRAIT_is_nothrow_swappable_CONFORMANCE
|
||||
static_assert((eastl::is_nothrow_swappable<int>::value == true), "is_nothrow_swappable failure"); // There currently isn't any specialization for swap of scalar types that's nothrow.
|
||||
static_assert((eastl::is_nothrow_swappable<eastl::vector<int> >::value == false), "is_nothrow_swappable failure");
|
||||
static_assert((eastl::is_nothrow_swappable<ThrowSwappable>::value == false), "is_nothrow_swappable failure");
|
||||
static_assert((eastl::is_nothrow_swappable<NoThrowSwappable>::value == true), "is_nothrow_swappable failure");
|
||||
#if EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
static_assert((eastl::is_nothrow_swappable_v<int> == true), "is_nothrow_swappable failure"); // There currently isn't any specialization for swap of scalar types that's nothrow.
|
||||
static_assert((eastl::is_nothrow_swappable_v<eastl::vector<int>> == false), "is_nothrow_swappable failure");
|
||||
static_assert((eastl::is_nothrow_swappable_v<ThrowSwappable> == false), "is_nothrow_swappable failure");
|
||||
static_assert((eastl::is_nothrow_swappable_v<NoThrowSwappable> == true), "is_nothrow_swappable failure");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if EASTL_VARIADIC_TEMPLATES_ENABLED
|
||||
// is_swappable_with
|
||||
// is_nothrow_swappable_with
|
||||
static_assert(eastl::is_swappable_with<int&, int&>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, int>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int&, int>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, int&>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, short>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, long>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, eastl::vector<int>>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<void, void>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<int, void>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<void, int>::value, "is_swappable_with failure");
|
||||
static_assert(!eastl::is_swappable_with<ThrowSwappable, ThrowSwappable>::value, "is_swappable_with failure");
|
||||
static_assert(eastl::is_swappable_with<ThrowSwappable&, ThrowSwappable&>::value, "is_swappable_with failure");
|
||||
static_assert(eastl::is_swappable_with<Swappable1&, Swappable1&>::value, "is_swappable_with failure");
|
||||
static_assert(eastl::is_swappable_with<Swappable1&, Swappable2&>::value, "is_swappable_with failure");
|
||||
static_assert(eastl::is_swappable_with<Swappable2&, Swappable1&>::value, "is_swappable_with failure");
|
||||
|
||||
#if EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
static_assert(eastl::is_swappable_with_v<int&, int&>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, int>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int&, int>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, int&>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, short>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, long>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, eastl::vector<int>>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<void, void>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<int, void>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<void, int>, "is_swappable_with_v failure");
|
||||
static_assert(!eastl::is_swappable_with_v<ThrowSwappable, ThrowSwappable>, "is_swappable_with_v failure");
|
||||
static_assert(eastl::is_swappable_with_v<ThrowSwappable&, ThrowSwappable&>, "is_swappable_with_v failure");
|
||||
static_assert(eastl::is_swappable_with_v<Swappable1&, Swappable1&>, "is_swappable_with_v failure");
|
||||
static_assert(eastl::is_swappable_with_v<Swappable1&, Swappable2&>, "is_swappable_with_v failure");
|
||||
static_assert(eastl::is_swappable_with_v<Swappable2&, Swappable1&>, "is_swappable_with_v failure");
|
||||
#endif // EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
|
||||
#if EASTL_TYPE_TRAIT_is_nothrow_swappable_with_CONFORMANCE
|
||||
static_assert(eastl::is_nothrow_swappable_with<int&, int&>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, int>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int&, int>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, int&>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, short>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, long>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, eastl::vector<int>>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<void, void>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<int, void>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<void, int>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<ThrowSwappable, ThrowSwappable>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<ThrowSwappable&, ThrowSwappable&>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with<NoThrowSwappable, NoThrowSwappable>::value, "is_nothrow_swappable_with failure");
|
||||
static_assert(eastl::is_nothrow_swappable_with<NoThrowSwappable&, NoThrowSwappable&>::value, "is_nothrow_swappable_with failure");
|
||||
|
||||
#if EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
static_assert(eastl::is_nothrow_swappable_with_v<int&, int&>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, int>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int&, int>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, int&>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, short>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, long>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, eastl::vector<int>>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<void, void>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<int, void>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<void, int>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<ThrowSwappable, ThrowSwappable>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<ThrowSwappable&, ThrowSwappable&>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(!eastl::is_nothrow_swappable_with_v<NoThrowSwappable, NoThrowSwappable>, "is_nothrow_swappable_with_v failure");
|
||||
static_assert(eastl::is_nothrow_swappable_with_v<NoThrowSwappable&, NoThrowSwappable&>, "is_nothrow_swappable_with_v failure");
|
||||
#endif // EASTL_VARIABLE_TEMPLATES_ENABLED
|
||||
#endif
|
||||
#endif // EASTL_VARIADIC_TEMPLATES_ENABLED
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
#if !defined(EA_COMPILER_NO_NOEXCEPT)
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Warning C4626 warns against an implicitly deleted move assignment operator.
|
||||
// This warning was disabled by default in VS2013. It was enabled by default in
|
||||
// VS2015. Since the the tests below are explicitly testing move construction
|
||||
// of the various classes explicitly deleting the move assignment to remove the
|
||||
// warning is safe.
|
||||
//
|
||||
// https://msdn.microsoft.com/en-us/library/23k5d385.aspx
|
||||
|
||||
struct noexcept_move_copy
|
||||
{
|
||||
bool mStatus;
|
||||
|
||||
noexcept_move_copy() : mStatus(true) {}
|
||||
|
||||
noexcept_move_copy(const noexcept_move_copy&) = default;
|
||||
|
||||
noexcept_move_copy(noexcept_move_copy&& r) noexcept { r.mStatus = false; }
|
||||
|
||||
noexcept_move_copy& operator=(const noexcept_move_copy&) = delete; // required as VS2015 enabled C4626 by default.
|
||||
};
|
||||
|
||||
struct noexcept_move_no_copy
|
||||
{
|
||||
bool mStatus;
|
||||
|
||||
noexcept_move_no_copy() : mStatus(true) {}
|
||||
|
||||
noexcept_move_no_copy(const noexcept_move_no_copy&) = delete;
|
||||
|
||||
noexcept_move_no_copy(noexcept_move_no_copy&& r) noexcept { r.mStatus = false; };
|
||||
|
||||
noexcept_move_no_copy& operator=(const noexcept_move_no_copy&) = delete; // required as VS2015 enabled C4626 by default.
|
||||
};
|
||||
|
||||
struct except_move_copy
|
||||
{
|
||||
bool mStatus;
|
||||
|
||||
except_move_copy() : mStatus(true) {}
|
||||
|
||||
except_move_copy(const except_move_copy&) = default;
|
||||
|
||||
except_move_copy(except_move_copy&& r) noexcept(false) { r.mStatus = false; };
|
||||
|
||||
except_move_copy& operator=(const except_move_copy&) = delete; // required as VS2015 enabled C4626 by default.
|
||||
};
|
||||
|
||||
struct except_move_no_copy
|
||||
{
|
||||
bool mStatus;
|
||||
|
||||
except_move_no_copy() : mStatus(true) {}
|
||||
|
||||
except_move_no_copy(const except_move_no_copy&) = delete;
|
||||
|
||||
except_move_no_copy(except_move_no_copy&& r) noexcept(false) { r.mStatus = false; };
|
||||
|
||||
except_move_no_copy& operator=(const except_move_no_copy&) = delete; // required as VS2015 enabled C4626 by default.
|
||||
};
|
||||
#endif
|
||||
|
||||
static int TestUtilityMove()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
// move_if_noexcept
|
||||
#if !defined(EA_COMPILER_NO_NOEXCEPT)
|
||||
noexcept_move_copy nemcA;
|
||||
noexcept_move_copy nemcB =
|
||||
eastl::move_if_noexcept(nemcA); // nemcB should be constructed via noexcept_move_copy(noexcept_move_copy&&)
|
||||
EATEST_VERIFY(nemcA.mStatus == false);
|
||||
EA_UNUSED(nemcB);
|
||||
|
||||
noexcept_move_no_copy nemncA;
|
||||
noexcept_move_no_copy nemncB = eastl::move_if_noexcept(
|
||||
nemncA); // nemncB should be constructed via noexcept_move_no_copy(noexcept_move_no_copy&&)
|
||||
EATEST_VERIFY(nemncA.mStatus == false);
|
||||
EA_UNUSED(nemncB);
|
||||
|
||||
except_move_copy emcA;
|
||||
except_move_copy emcB = eastl::move_if_noexcept(
|
||||
emcA); // emcB should be constructed via except_move_copy(const except_move_copy&) if exceptions are enabled.
|
||||
#if EASTL_EXCEPTIONS_ENABLED
|
||||
EATEST_VERIFY(emcA.mStatus == true);
|
||||
#else
|
||||
EATEST_VERIFY(emcA.mStatus == false);
|
||||
#endif
|
||||
EA_UNUSED(emcB);
|
||||
|
||||
except_move_no_copy emncA;
|
||||
except_move_no_copy emncB =
|
||||
eastl::move_if_noexcept(emncA); // emncB should be constructed via except_move_no_copy(except_move_no_copy&&)
|
||||
EATEST_VERIFY(emncA.mStatus == false);
|
||||
EA_UNUSED(emncB);
|
||||
#endif
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
static int TestUtilityIntegerSequence()
|
||||
{
|
||||
using namespace eastl;
|
||||
int nErrorCount = 0;
|
||||
#if EASTL_VARIADIC_TEMPLATES_ENABLED
|
||||
|
||||
EATEST_VERIFY((integer_sequence<int, 0, 1, 2, 3, 4>::size() == 5));
|
||||
EATEST_VERIFY((make_integer_sequence<int, 5>::size() == 5));
|
||||
static_assert(is_same<make_integer_sequence<int, 5>, integer_sequence<int, 0, 1, 2, 3, 4>>::value);
|
||||
|
||||
EATEST_VERIFY((index_sequence<0, 1, 2, 3, 4>::size() == 5));
|
||||
EATEST_VERIFY((make_index_sequence<5>::size() == 5));
|
||||
static_assert(is_same<make_index_sequence<5>, index_sequence<0, 1, 2, 3, 4>>::value);
|
||||
static_assert(is_same<make_index_sequence<5>, integer_sequence<size_t, 0, 1, 2, 3, 4>>::value);
|
||||
#endif // EASTL_VARIADIC_TEMPLATES_ENABLED
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
static int TestUtilityExchange()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
{
|
||||
int a = 0;
|
||||
auto r = eastl::exchange(a, 1);
|
||||
|
||||
EATEST_VERIFY(r == 0);
|
||||
EATEST_VERIFY(a == 1);
|
||||
}
|
||||
|
||||
{
|
||||
int a = 0;
|
||||
auto r = eastl::exchange(a, 1.78);
|
||||
|
||||
EATEST_VERIFY(r == 0);
|
||||
EATEST_VERIFY(a == 1);
|
||||
}
|
||||
|
||||
{
|
||||
int a = 0;
|
||||
auto r = eastl::exchange(a, 1.78f);
|
||||
|
||||
EATEST_VERIFY(r == 0);
|
||||
EATEST_VERIFY(a == 1);
|
||||
}
|
||||
|
||||
{
|
||||
int a = 0, b = 1;
|
||||
auto r = eastl::exchange(a, b);
|
||||
|
||||
EATEST_VERIFY(r == 0);
|
||||
EATEST_VERIFY(a == 1);
|
||||
EATEST_VERIFY(b == 1);
|
||||
}
|
||||
|
||||
{
|
||||
bool b = true;
|
||||
|
||||
auto r = eastl::exchange(b, true);
|
||||
EATEST_VERIFY(r);
|
||||
|
||||
r = eastl::exchange(b, false);
|
||||
EATEST_VERIFY(r);
|
||||
EATEST_VERIFY(!b);
|
||||
|
||||
r = eastl::exchange(b, true);
|
||||
EATEST_VERIFY(!r);
|
||||
EATEST_VERIFY(b);
|
||||
}
|
||||
|
||||
{
|
||||
TestObject::Reset();
|
||||
|
||||
TestObject a(42);
|
||||
auto r = eastl::exchange(a, TestObject(24));
|
||||
|
||||
EATEST_VERIFY(r.mX == 42);
|
||||
EATEST_VERIFY(a.mX == 24);
|
||||
}
|
||||
|
||||
{
|
||||
const char* const pElectronicArts = "Electronic Arts";
|
||||
const char* const pEAVancouver = "EA Vancouver";
|
||||
|
||||
eastl::string a(pElectronicArts);
|
||||
auto r = eastl::exchange(a, pEAVancouver);
|
||||
|
||||
EATEST_VERIFY(r == pElectronicArts);
|
||||
EATEST_VERIFY(a == pEAVancouver);
|
||||
|
||||
r = eastl::exchange(a, "EA Standard Template Library");
|
||||
EATEST_VERIFY(a == "EA Standard Template Library");
|
||||
}
|
||||
|
||||
// Construct pair using single move constructor
|
||||
{
|
||||
struct TestPairSingleMoveConstructor
|
||||
{
|
||||
void test(int&& val)
|
||||
{
|
||||
eastl::pair<int,int> p(eastl::pair_first_construct, eastl::move(val));
|
||||
}
|
||||
};
|
||||
|
||||
int i1 = 1;
|
||||
TestPairSingleMoveConstructor test;
|
||||
test.test(eastl::move(i1));
|
||||
}
|
||||
|
||||
// User reported regression where via reference collapsing, we see the same single element ctor defined twice.
|
||||
//
|
||||
// T = const U&
|
||||
// pair(const T&) -> pair(const const U& &) -> pair(const U&)
|
||||
// pair(T&&) -> pair(const U& &&) -> pair(const U&)
|
||||
{
|
||||
struct FooType {};
|
||||
|
||||
using VectorOfPairWithReference = eastl::vector<eastl::pair<const FooType&, float>>;
|
||||
|
||||
VectorOfPairWithReference v;
|
||||
}
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
#if defined(EA_COMPILER_CPP20_ENABLED)
|
||||
template <typename T>
|
||||
static int TestCmpCommon()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_equal(T(0), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_equal(T(1), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(eastl::cmp_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_equal(T(0), T(1)));
|
||||
EATEST_VERIFY(!eastl::cmp_equal(T(1), T(0)));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(eastl::cmp_equal(T(-1), T(-1)));
|
||||
EATEST_VERIFY(!eastl::cmp_equal(T(-1), T(-2)));
|
||||
EATEST_VERIFY(!eastl::cmp_equal(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(T(1), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(T(0), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::min()));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(!eastl::cmp_not_equal(T(-1), T(-1)));
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(T(-1), T(-2)));
|
||||
EATEST_VERIFY(eastl::cmp_not_equal(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_less(T(0), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_less(T(5), T(10)));
|
||||
EATEST_VERIFY(!eastl::cmp_less(T(0), T(0)));
|
||||
EATEST_VERIFY(!eastl::cmp_less(T(1), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_less(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_less(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(!eastl::cmp_less(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_less(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::min()));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(!eastl::cmp_less(T(-1), T(-1)));
|
||||
EATEST_VERIFY(!eastl::cmp_less(T(-1), T(-2)));
|
||||
EATEST_VERIFY(eastl::cmp_less(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(0), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(5), T(10)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(0), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(1), T(1)));
|
||||
EATEST_VERIFY(!eastl::cmp_less_equal(T(1), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_less_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::min()));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(-1), T(-1)));
|
||||
EATEST_VERIFY(!eastl::cmp_less_equal(T(-1), T(-2)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_greater(T(1), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_greater(T(10), T(5)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(T(0), T(0)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(T(0), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_greater(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::max()));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(!eastl::cmp_greater(T(-1), T(-1)));
|
||||
EATEST_VERIFY(eastl::cmp_greater(T(-1), T(-2)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(1), T(0)));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(10), T(5)));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(0), T(0)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater_equal(T(0), T(1)));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::min()));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(eastl::numeric_limits<T>::max(), eastl::numeric_limits<T>::max()));
|
||||
EATEST_VERIFY(!eastl::cmp_greater_equal(eastl::numeric_limits<T>::min(), eastl::numeric_limits<T>::max()));
|
||||
if (eastl::is_signed_v<T>)
|
||||
{
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(-1), T(-1)));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(-1), T(-2)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater_equal(T(-2), T(-1)));
|
||||
}
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
template <typename T, typename U>
|
||||
static int TestUtilityCmpEql(const T x, const U y)
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(eastl::cmp_equal(U(y), T(x)));
|
||||
EATEST_VERIFY(!eastl::cmp_not_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(!eastl::cmp_not_equal(U(y), T(x)));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
template <typename T, typename U>
|
||||
static int TestUtilityCmpLess(const T x, const U y)
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_less(T(x), U(y)));
|
||||
EATEST_VERIFY(!eastl::cmp_less(U(y), T(x)));
|
||||
|
||||
EATEST_VERIFY(!eastl::cmp_greater_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(U(y), T(x)));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
template <typename T, typename U>
|
||||
static int TestUtilityCmpGreater(const T x, const U y)
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_greater(T(x), U(y)));
|
||||
EATEST_VERIFY(!eastl::cmp_greater(U(y), T(x)));
|
||||
|
||||
EATEST_VERIFY(!eastl::cmp_less_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(U(y), T(x)));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
template <typename T, typename U>
|
||||
static int TestUtilityCmpLessEq(const T x, const U y)
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(eastl::cmp_less(T(x), U(y)) || eastl::cmp_equal(T(x), U(y)));
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(U(y), T(x)));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
template <typename T, typename U>
|
||||
static int TestUtilityCmpGreaterEq(const T x, const U y)
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_greater_equal(T(x), U(y)));
|
||||
EATEST_VERIFY(eastl::cmp_greater(T(x), U(y)) || eastl::cmp_equal(T(x), U(y)));
|
||||
|
||||
EATEST_VERIFY(eastl::cmp_less_equal(U(y), T(x)));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
|
||||
static int TestUtilityIntegralComp()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
// Test integral comparisons among same types
|
||||
nErrorCount += TestCmpCommon<int>();
|
||||
nErrorCount += TestCmpCommon<short>();
|
||||
nErrorCount += TestCmpCommon<long>();
|
||||
nErrorCount += TestCmpCommon<long long>();
|
||||
|
||||
nErrorCount += TestCmpCommon<unsigned int>();
|
||||
nErrorCount += TestCmpCommon<unsigned short>();
|
||||
nErrorCount += TestCmpCommon<unsigned long>();
|
||||
nErrorCount += TestCmpCommon<unsigned long long>();
|
||||
|
||||
// Test integral comparison among different types
|
||||
nErrorCount += TestUtilityCmpEql(int(0), short(0));
|
||||
nErrorCount += TestUtilityCmpEql(short(2), long(2));
|
||||
nErrorCount += TestUtilityCmpEql(short(3), unsigned long(3));
|
||||
nErrorCount += TestUtilityCmpEql(int(-5), long long(-5));
|
||||
nErrorCount += TestUtilityCmpEql(short(-100), long long(-100));
|
||||
nErrorCount += TestUtilityCmpEql(unsigned int(100), long(100));
|
||||
nErrorCount += TestUtilityCmpEql(unsigned long long(100), int(100));
|
||||
|
||||
nErrorCount += TestUtilityCmpLess(int(0), long long(1));
|
||||
nErrorCount += TestUtilityCmpLess(int(-1), unsigned long(1));
|
||||
nErrorCount += TestUtilityCmpLess(short(-100), long long(100));
|
||||
nErrorCount += TestUtilityCmpLess(eastl::numeric_limits<long>::min(), short(0));
|
||||
nErrorCount += TestUtilityCmpLess(short(0), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpLess(eastl::numeric_limits<unsigned short>::min(), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpLess(eastl::numeric_limits<short>::max(), eastl::numeric_limits<long>::max());
|
||||
nErrorCount += TestUtilityCmpLess(eastl::numeric_limits<int>::max(), eastl::numeric_limits<long long>::max());
|
||||
nErrorCount += TestUtilityCmpLess(int(-100), unsigned int(0));
|
||||
nErrorCount += TestUtilityCmpLess(eastl::numeric_limits<int>::min(), eastl::numeric_limits<unsigned int>::min());
|
||||
|
||||
nErrorCount += TestUtilityCmpGreater(int(1), short(0));
|
||||
nErrorCount += TestUtilityCmpGreater(unsigned long(1), int(-1));
|
||||
nErrorCount += TestUtilityCmpGreater(unsigned long long(100), short(-100));
|
||||
nErrorCount += TestUtilityCmpGreater(short(0), eastl::numeric_limits<short>::min());
|
||||
nErrorCount += TestUtilityCmpGreater(eastl::numeric_limits<long>::max(), unsigned short(5));
|
||||
nErrorCount += TestUtilityCmpGreater(eastl::numeric_limits<long>::max(), eastl::numeric_limits<int>::min());
|
||||
nErrorCount += TestUtilityCmpGreater(eastl::numeric_limits<int>::max(), eastl::numeric_limits<short>::max());
|
||||
nErrorCount += TestUtilityCmpGreater(eastl::numeric_limits<long long>::max(), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpGreater(unsigned int(0), int(-100));
|
||||
nErrorCount += TestUtilityCmpGreater(eastl::numeric_limits<unsigned int>::min(), eastl::numeric_limits<int>::min());
|
||||
|
||||
nErrorCount += TestUtilityCmpLessEq(int(0), short(1));
|
||||
nErrorCount += TestUtilityCmpLessEq(int(-1), long long(-1));
|
||||
nErrorCount += TestUtilityCmpLessEq(short(-100), unsigned long long(100));
|
||||
nErrorCount += TestUtilityCmpLessEq(short(-100), long long(-100));
|
||||
nErrorCount += TestUtilityCmpLessEq(eastl::numeric_limits<int>::min(), short(0));
|
||||
nErrorCount += TestUtilityCmpLessEq(short(0), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpLessEq(eastl::numeric_limits<short>::min(), eastl::numeric_limits<short>::min());
|
||||
nErrorCount += TestUtilityCmpLessEq(eastl::numeric_limits<int>::max(), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpLessEq(eastl::numeric_limits<int>::max(), eastl::numeric_limits<long long>::max());
|
||||
nErrorCount += TestUtilityCmpLessEq(int(50), unsigned int(50));
|
||||
nErrorCount += TestUtilityCmpLessEq(eastl::numeric_limits<int>::min(), eastl::numeric_limits<unsigned int>::min());
|
||||
|
||||
nErrorCount += TestUtilityCmpGreaterEq(int(1), short(1));
|
||||
nErrorCount += TestUtilityCmpGreaterEq(long long(-1), int(-1));
|
||||
nErrorCount += TestUtilityCmpGreaterEq(long long(-100), short(-100));
|
||||
nErrorCount += TestUtilityCmpGreaterEq(short(0), long(0));
|
||||
nErrorCount += TestUtilityCmpGreaterEq(eastl::numeric_limits<long>::max(), eastl::numeric_limits<long>::max());
|
||||
nErrorCount += TestUtilityCmpGreaterEq(eastl::numeric_limits<int>::max(), eastl::numeric_limits<short>::min());
|
||||
nErrorCount += TestUtilityCmpGreaterEq(eastl::numeric_limits<int>::max(), eastl::numeric_limits<short>::max());
|
||||
nErrorCount += TestUtilityCmpGreaterEq(eastl::numeric_limits<long long>::max(), eastl::numeric_limits<int>::max());
|
||||
nErrorCount += TestUtilityCmpGreaterEq(unsigned int(0), int(0));
|
||||
nErrorCount += TestUtilityCmpGreaterEq(eastl::numeric_limits<unsigned int>::min(), eastl::numeric_limits<int>::min());
|
||||
|
||||
// Test in_range
|
||||
EATEST_VERIFY(eastl::in_range<int>(0));
|
||||
EATEST_VERIFY(eastl::in_range<int>(eastl::numeric_limits<int>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<int>(eastl::numeric_limits<int>::max()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned int>(0));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned int>(eastl::numeric_limits<unsigned int>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned int>(eastl::numeric_limits<unsigned int>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned int>(-1));
|
||||
EATEST_VERIFY(!eastl::in_range<int>(eastl::numeric_limits<unsigned int>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned int>(eastl::numeric_limits<int>::min()));
|
||||
|
||||
EATEST_VERIFY(eastl::in_range<short>(100));
|
||||
EATEST_VERIFY(eastl::in_range<short>(eastl::numeric_limits<short>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<short>(eastl::numeric_limits<short>::max()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned short>(100));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned short>(eastl::numeric_limits<unsigned short>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned short>(eastl::numeric_limits<unsigned short>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned short>(-1));
|
||||
EATEST_VERIFY(!eastl::in_range<short>(eastl::numeric_limits<unsigned int>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned short>(eastl::numeric_limits<int>::min()));
|
||||
|
||||
EATEST_VERIFY(eastl::in_range<long>(50));
|
||||
EATEST_VERIFY(eastl::in_range<long>(eastl::numeric_limits<long>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<long>(eastl::numeric_limits<long>::max()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned long>(50));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned long>(eastl::numeric_limits<unsigned long>::min()));
|
||||
EATEST_VERIFY(eastl::in_range<unsigned long>(eastl::numeric_limits<unsigned long>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned long>(-1));
|
||||
EATEST_VERIFY(!eastl::in_range<long>(eastl::numeric_limits<unsigned int>::max()));
|
||||
EATEST_VERIFY(!eastl::in_range<unsigned long>(eastl::numeric_limits<int>::min()));
|
||||
|
||||
return nErrorCount;
|
||||
}
|
||||
#endif
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// TestUtility
|
||||
//
|
||||
int TestUtility()
|
||||
{
|
||||
int nErrorCount = 0;
|
||||
|
||||
nErrorCount += TestUtilityPair();
|
||||
nErrorCount += TestUtilityRelops();
|
||||
nErrorCount += TestUtilitySwap();
|
||||
nErrorCount += TestUtilityMove();
|
||||
nErrorCount += TestUtilityIntegerSequence();
|
||||
nErrorCount += TestUtilityExchange();
|
||||
#if defined(EA_COMPILER_CPP20_ENABLED)
|
||||
nErrorCount += TestUtilityIntegralComp();
|
||||
#endif
|
||||
return nErrorCount;
|
||||
}
|
||||
Reference in New Issue
Block a user