mirror of https://github.com/upx/upx.git
491 lines
17 KiB
C++
491 lines
17 KiB
C++
/* dt_cxxlib.cpp -- doctest check
|
|
|
|
This file is part of the UPX executable compressor.
|
|
|
|
Copyright (C) 1996-2024 Markus Franz Xaver Johannes Oberhumer
|
|
All Rights Reserved.
|
|
|
|
UPX and the UCL library are free software; you can redistribute them
|
|
and/or modify them under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING.
|
|
If not, write to the Free Software Foundation, Inc.,
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
Markus F.X.J. Oberhumer
|
|
<markus@oberhumer.com>
|
|
*/
|
|
|
|
// lots of tests (and probably quite a number of redundant tests)
|
|
// modern compilers will optimize away much of this code
|
|
|
|
#include "../util/system_headers.h"
|
|
#include <vector> // std::vector
|
|
#include "../conf.h"
|
|
|
|
/*************************************************************************
|
|
// compile-time checks
|
|
**************************************************************************/
|
|
|
|
// need extra parenthesis because the C preprocessor does not understand C++ templates
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_all_v<int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_all_v<int, int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_all_v<int, int, int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_all_v<int, char>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_all_v<int, char, int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_all_v<int, int, char>) )
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_any_v<int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_any_v<int, int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_any_v<int, char, int>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_any_v<int, int, char>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_any_v<int, char>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_any_v<int, char, char>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((!upx::is_same_any_v<int, char, long>) )
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER((upx::is_same_any_v<ptrdiff_t, int, long, long long>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(
|
|
(upx::is_same_any_v<size_t, unsigned, unsigned long, unsigned long long>) )
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(
|
|
(upx::is_same_any_v<upx_uintptr_t, unsigned, unsigned long, unsigned long long>) )
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(int) == sizeof(int))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof('a') == sizeof(char))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof("") == 1)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof("a") == 2)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof("ab") == 3)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(L'a') == sizeof(wchar_t))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(L"") == 1 * sizeof(wchar_t))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(L"a") == 2 * sizeof(wchar_t))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(L"ab") == 3 * sizeof(wchar_t))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(0) == sizeof(int))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(0L) == sizeof(long))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(0LL) == sizeof(long long))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(nullptr) == sizeof(void *))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(sizeof(0)) == sizeof(size_t))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof(usizeof(0)) == sizeof(unsigned))
|
|
#if 0
|
|
// works, but may trigger clang/gcc warnings "-Wunused-value"
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof((1LL, 1)) == sizeof(int))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(usizeof((1, 1LL)) == sizeof(long long))
|
|
#endif
|
|
|
|
namespace compile_time = upx::compile_time;
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_len("") == 0)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_len("a") == 1)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_len("ab") == 2)
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_len("abc") == 3)
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_eq("", ""))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_eq("a", ""))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_eq("", "a"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_eq("abc", "abc"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_eq("ab", "abc"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_eq("abc", "ab"))
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_lt("", ""))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_lt("a", ""))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_lt("", "a"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_lt("abc", "abc"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_lt("ab", "abc"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_lt("abc", "ab"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_lt("abc", "aba"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_lt("abc", "abz"))
|
|
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_ne("abc", "abz"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_gt("abc", "abz"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(!compile_time::string_ge("abc", "abz"))
|
|
ACC_COMPILE_TIME_ASSERT_HEADER(compile_time::string_le("abc", "abz"))
|
|
|
|
/*************************************************************************
|
|
//
|
|
**************************************************************************/
|
|
|
|
TEST_CASE("std::vector") {
|
|
constexpr size_t N = 16;
|
|
std::vector<int> v(N);
|
|
CHECK(v.end() - v.begin() == N);
|
|
CHECK(&v[0] == &(*(v.begin())));
|
|
// CHECK(&v[0] + N == &(*(v.end()))); // TODO later: is this legal??
|
|
// TODO later: make sure that this throws
|
|
#if defined(_LIBCPP_HARDENING_MODE_DEBUG) && \
|
|
(_LIBCPP_HARDENING_MODE == _LIBCPP_HARDENING_MODE_DEBUG)
|
|
CHECK_THROWS((void) &v[N]);
|
|
#endif
|
|
UNUSED(v);
|
|
}
|
|
|
|
/*************************************************************************
|
|
// UPX_CXX_DISABLE_xxx
|
|
**************************************************************************/
|
|
|
|
namespace {
|
|
template <class TA, class TB, int TC = 0>
|
|
struct MyType1 {
|
|
MyType1() noexcept {}
|
|
UPX_CXX_DISABLE_ADDRESS(MyType1)
|
|
UPX_CXX_DISABLE_COPY_MOVE(MyType1)
|
|
UPX_CXX_DISABLE_NEW_DELETE_NO_VIRTUAL(MyType1)
|
|
};
|
|
template <class TA, class TB, int TC = 0>
|
|
struct MyType2 {
|
|
MyType2() noexcept {}
|
|
UPX_CXX_DISABLE_COPY_MOVE(MyType2)
|
|
typedef MyType2<TA, TB, TC> Self;
|
|
UPX_CXX_DISABLE_ADDRESS(Self)
|
|
UPX_CXX_DISABLE_NEW_DELETE_NO_VIRTUAL(Self)
|
|
};
|
|
template <class TA, class TB, int TC = 0>
|
|
struct MyVType1 {
|
|
MyVType1() noexcept {}
|
|
virtual ~MyVType1() noexcept {}
|
|
UPX_CXX_DISABLE_ADDRESS(MyVType1)
|
|
UPX_CXX_DISABLE_COPY_MOVE(MyVType1)
|
|
UPX_CXX_DISABLE_NEW_DELETE(MyVType1)
|
|
};
|
|
template <class TA, class TB, int TC = 0>
|
|
struct MyVType2 {
|
|
MyVType2() noexcept {}
|
|
virtual ~MyVType2() noexcept {}
|
|
UPX_CXX_DISABLE_COPY_MOVE(MyVType2)
|
|
typedef MyVType2<TA, TB, TC> Self;
|
|
UPX_CXX_DISABLE_ADDRESS(Self)
|
|
UPX_CXX_DISABLE_NEW_DELETE(Self)
|
|
};
|
|
TEST_CASE("UPX_CXX_DISABLE_xxx") {
|
|
MyType1<char, int, 1> dummy1;
|
|
MyType2<char, int, 2> dummy2;
|
|
MyVType1<char, int, 1> vdummy1;
|
|
MyVType2<char, int, 2> vdummy2;
|
|
(void) dummy1;
|
|
(void) dummy2;
|
|
(void) vdummy1;
|
|
(void) vdummy2;
|
|
}
|
|
} // namespace
|
|
|
|
namespace test_disable_new_delete {
|
|
|
|
struct A1 {
|
|
int a;
|
|
};
|
|
struct A2 {
|
|
int a;
|
|
UPX_CXX_DISABLE_NEW_DELETE_NO_VIRTUAL(A2)
|
|
};
|
|
struct B1_A1 : public A1 {
|
|
int b;
|
|
};
|
|
struct B1_A2 : public A2 {
|
|
int b;
|
|
};
|
|
struct B2_A1 : public A1 {
|
|
int b;
|
|
UPX_CXX_DISABLE_NEW_DELETE_NO_VIRTUAL(B2_A1)
|
|
};
|
|
struct B2_A2 : public A2 {
|
|
int b;
|
|
UPX_CXX_DISABLE_NEW_DELETE_NO_VIRTUAL(B2_A2)
|
|
};
|
|
|
|
struct X1 {
|
|
virtual ~X1() noexcept {}
|
|
int x;
|
|
};
|
|
struct X2 {
|
|
virtual ~X2() noexcept {}
|
|
int x;
|
|
UPX_CXX_DISABLE_NEW_DELETE(X2)
|
|
};
|
|
struct Y1_X1 : public X1 {
|
|
int y;
|
|
};
|
|
struct Y1_X2 : public X2 {
|
|
int y;
|
|
};
|
|
struct Y2_X1 : public X1 {
|
|
int y;
|
|
UPX_CXX_DISABLE_NEW_DELETE(Y2_X1)
|
|
};
|
|
struct Y2_X2 : public X2 {
|
|
int y;
|
|
UPX_CXX_DISABLE_NEW_DELETE(Y2_X2)
|
|
};
|
|
struct Z1_X1 : public X1 {
|
|
virtual ~Z1_X1() noexcept {}
|
|
int z;
|
|
};
|
|
struct Z1_X2 : public X2 {
|
|
virtual ~Z1_X2() noexcept {}
|
|
int z;
|
|
};
|
|
struct Z2_X1 : public X1 {
|
|
virtual ~Z2_X1() noexcept {}
|
|
int z;
|
|
UPX_CXX_DISABLE_NEW_DELETE(Z2_X1)
|
|
};
|
|
struct Z2_X2 : public X2 {
|
|
virtual ~Z2_X2() noexcept {}
|
|
int z;
|
|
UPX_CXX_DISABLE_NEW_DELETE(Z2_X2)
|
|
};
|
|
|
|
} // namespace test_disable_new_delete
|
|
|
|
/*************************************************************************
|
|
// util
|
|
**************************************************************************/
|
|
|
|
TEST_CASE("upx::ObjectDeleter 1") {
|
|
LE16 *o = nullptr; // object
|
|
LE32 *a = nullptr; // array
|
|
{
|
|
upx::ObjectDeleter<LE16 **> o_deleter{&o, 1};
|
|
o = new LE16;
|
|
assert(o != nullptr);
|
|
upx::ArrayDeleter<LE32 **> a_deleter{&a, 1};
|
|
a = New(LE32, 1);
|
|
assert(a != nullptr);
|
|
}
|
|
assert(o == nullptr);
|
|
assert(a == nullptr);
|
|
// test "const" versions
|
|
{
|
|
const upx::ObjectDeleter<LE16 **const> o_deleter{&o, 1};
|
|
o = new LE16;
|
|
assert(o != nullptr);
|
|
const upx::ArrayDeleter<LE32 **const> a_deleter{&a, 1};
|
|
a = New(LE32, 1);
|
|
assert(a != nullptr);
|
|
}
|
|
assert(o == nullptr);
|
|
assert(a == nullptr);
|
|
}
|
|
|
|
TEST_CASE("upx::ObjectDeleter 2") {
|
|
constexpr size_t N = 2;
|
|
BE16 *o[N]; // multiple objects
|
|
BE32 *a[N]; // multiple arrays
|
|
{
|
|
upx::ObjectDeleter<BE16 **> o_deleter{o, 0};
|
|
upx::ArrayDeleter<BE32 **> a_deleter{a, 0};
|
|
for (size_t i = 0; i < N; i++) {
|
|
o[i] = new BE16;
|
|
assert(o[i] != nullptr);
|
|
o_deleter.count += 1;
|
|
a[i] = New(BE32, 1 + i);
|
|
assert(a[i] != nullptr);
|
|
a_deleter.count += 1;
|
|
}
|
|
}
|
|
for (size_t i = 0; i < N; i++) {
|
|
assert(o[i] == nullptr);
|
|
assert(a[i] == nullptr);
|
|
}
|
|
}
|
|
|
|
TEST_CASE("upx::ptr_static_cast") {
|
|
// check that we do not trigger any -Wcast-align warnings
|
|
using upx::ptr_static_cast;
|
|
void *vp = nullptr;
|
|
byte *bp = nullptr;
|
|
int *ip = nullptr;
|
|
double *dp = nullptr;
|
|
|
|
assert((vp == ptr_static_cast<void *>(vp)));
|
|
assert((vp == ptr_static_cast<void *>(bp)));
|
|
assert((vp == ptr_static_cast<void *>(ip)));
|
|
assert((vp == ptr_static_cast<void *>(dp)));
|
|
|
|
assert((bp == ptr_static_cast<byte *>(vp)));
|
|
assert((bp == ptr_static_cast<byte *>(bp)));
|
|
assert((bp == ptr_static_cast<byte *>(ip)));
|
|
assert((bp == ptr_static_cast<byte *>(dp)));
|
|
|
|
assert((ip == ptr_static_cast<int *>(vp)));
|
|
assert((ip == ptr_static_cast<int *>(bp)));
|
|
assert((ip == ptr_static_cast<int *>(ip)));
|
|
assert((ip == ptr_static_cast<int *>(dp)));
|
|
|
|
assert((dp == ptr_static_cast<double *>(vp)));
|
|
assert((dp == ptr_static_cast<double *>(bp)));
|
|
assert((dp == ptr_static_cast<double *>(ip)));
|
|
assert((dp == ptr_static_cast<double *>(dp)));
|
|
|
|
const byte *bc = nullptr;
|
|
const int *ic = nullptr;
|
|
assert((bc == ptr_static_cast<byte *>(bp)));
|
|
assert((bc == ptr_static_cast<const byte *>(bc)));
|
|
assert((bc == ptr_static_cast<byte *>(ip)));
|
|
assert((bc == ptr_static_cast<const byte *>(ic)));
|
|
assert((ic == ptr_static_cast<int *>(bp)));
|
|
assert((ic == ptr_static_cast<const int *>(bc)));
|
|
assert((ic == ptr_static_cast<int *>(ip)));
|
|
assert((ic == ptr_static_cast<const int *>(ic)));
|
|
}
|
|
|
|
TEST_CASE("upx::noncopyable") {
|
|
struct Test : private upx::noncopyable {
|
|
int v = 1;
|
|
};
|
|
Test t = {};
|
|
CHECK(t.v == 1);
|
|
#if (ACC_CC_MSC) // MSVC thinks that Test is not std::is_trivially_copyable; true or compiler bug?
|
|
// @COMPILER_BUG @MSVC_BUG
|
|
t.v = 0;
|
|
#else
|
|
mem_clear(&t);
|
|
#endif
|
|
CHECK(t.v == 0);
|
|
constexpr Test x = {};
|
|
static_assert(x.v == 1);
|
|
}
|
|
|
|
/*************************************************************************
|
|
// TriBool checks
|
|
**************************************************************************/
|
|
|
|
namespace {
|
|
template <class T>
|
|
struct TestTriBool {
|
|
static noinline void test(bool expect_true) {
|
|
static_assert(std::is_class<T>::value);
|
|
static_assert(std::is_nothrow_default_constructible<T>::value);
|
|
static_assert(std::is_nothrow_destructible<T>::value);
|
|
static_assert(std::is_standard_layout<T>::value);
|
|
static_assert(std::is_trivially_copyable<T>::value);
|
|
static_assert(sizeof(typename T::value_type) == sizeof(typename T::underlying_type));
|
|
static_assert(alignof(typename T::value_type) == alignof(typename T::underlying_type));
|
|
#if defined(__m68k__) && defined(__atarist__) && defined(__GNUC__)
|
|
// broken compiler or broken ABI
|
|
#elif defined(__i386__) && defined(__GNUC__) && (__GNUC__ == 7) && !defined(__clang__)
|
|
static_assert(sizeof(T) == sizeof(typename T::underlying_type));
|
|
// i386: "long long" enum align bug/ABI problem on older compilers
|
|
static_assert(alignof(T) <= alignof(typename T::underlying_type));
|
|
#else
|
|
static_assert(sizeof(T) == sizeof(typename T::underlying_type));
|
|
static_assert(alignof(T) == alignof(typename T::underlying_type));
|
|
#endif
|
|
static_assert(!bool(T(false)));
|
|
static_assert(bool(T(true)));
|
|
static_assert(bool(T(T::Third)) == T::is_third_true);
|
|
static_assert(T(false) == T::False);
|
|
static_assert(T(true) == T::True);
|
|
static_assert(T(T::False) == T::False);
|
|
static_assert(T(T::True) == T::True);
|
|
static_assert(T(T::Third) == T::Third);
|
|
static_assert(T(T::Third) == T(9));
|
|
static_assert(T(8) == T(9));
|
|
static_assert(!(T(0) == T(9)));
|
|
static_assert(!(T(1) == T(9)));
|
|
static_assert(T(T::Third) == 9);
|
|
static_assert(T(8) == 9);
|
|
static_assert(!(T(0) == 9));
|
|
static_assert(!(T(1) == 9));
|
|
constexpr T array[] = {false, true, T::Third};
|
|
static_assert(array[0].isStrictFalse());
|
|
static_assert(array[1].isStrictTrue());
|
|
static_assert(array[2].isThird());
|
|
static_assert(sizeof(array) == 3 * sizeof(T));
|
|
T a;
|
|
assert(a.getValue() == T::False);
|
|
assert(!a);
|
|
assert(!bool(a));
|
|
assert((!a ? true : false));
|
|
assert(a.isStrictFalse());
|
|
assert(!a.isStrictTrue());
|
|
assert(a.isStrictBool());
|
|
assert(!a.isThird());
|
|
a = false;
|
|
assert(a.getValue() == T::False);
|
|
assert(!a);
|
|
assert(!bool(a));
|
|
assert((!a ? true : false));
|
|
assert(a.isStrictFalse());
|
|
assert(!a.isStrictTrue());
|
|
assert(a.isStrictBool());
|
|
assert(!a.isThird());
|
|
a = true;
|
|
assert(a.getValue() == T::True);
|
|
assert(a);
|
|
assert(bool(a));
|
|
assert((a ? true : false));
|
|
assert(!a.isStrictFalse());
|
|
assert(a.isStrictTrue());
|
|
assert(a.isStrictBool());
|
|
assert(!a.isThird());
|
|
a = T::Third;
|
|
assert(a.getValue() == T::Third);
|
|
assert(T::is_third_true == expect_true);
|
|
if (expect_true) {
|
|
assert(a);
|
|
assert(bool(a));
|
|
assert((a ? true : false));
|
|
} else {
|
|
assert(!a);
|
|
assert(!bool(a));
|
|
assert((!a ? true : false));
|
|
}
|
|
assert(!a.isStrictFalse());
|
|
assert(!a.isStrictTrue());
|
|
assert(!a.isStrictBool());
|
|
assert(a.isThird());
|
|
a = 99;
|
|
assert(a.getValue() == T::Third);
|
|
if (expect_true) {
|
|
assert(a);
|
|
assert(bool(a));
|
|
assert((a ? true : false));
|
|
assert((!a ? false : true));
|
|
} else {
|
|
assert(!a);
|
|
assert(!bool(a));
|
|
assert((a ? false : true));
|
|
assert((!a ? true : false));
|
|
}
|
|
assert(!a.isStrictFalse());
|
|
assert(!a.isStrictTrue());
|
|
assert(!a.isStrictBool());
|
|
assert(a.isThird());
|
|
mem_clear(&a);
|
|
assert(a.isStrictFalse());
|
|
}
|
|
};
|
|
} // namespace
|
|
|
|
TEST_CASE("upx::TriBool") {
|
|
using upx::TriBool, upx::tribool;
|
|
static_assert(!tribool(false));
|
|
static_assert(tribool(true));
|
|
static_assert(!tribool(tribool::Third));
|
|
TestTriBool<tribool>::test(false);
|
|
#if DEBUG || 1
|
|
TestTriBool<TriBool<upx_int8_t> >::test(false);
|
|
TestTriBool<TriBool<upx_uint8_t> >::test(false);
|
|
TestTriBool<TriBool<upx_int16_t> >::test(false);
|
|
TestTriBool<TriBool<upx_uint16_t> >::test(false);
|
|
TestTriBool<TriBool<upx_int32_t> >::test(false);
|
|
TestTriBool<TriBool<upx_uint32_t> >::test(false);
|
|
TestTriBool<TriBool<upx_int64_t> >::test(false);
|
|
TestTriBool<TriBool<upx_uint64_t> >::test(false);
|
|
TestTriBool<TriBool<upx_int8_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_uint8_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_int16_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_uint16_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_int32_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_uint32_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_int64_t, true> >::test(true);
|
|
TestTriBool<TriBool<upx_uint64_t, true> >::test(true);
|
|
#endif
|
|
}
|
|
|
|
/* vim:set ts=4 sw=4 et: */
|