2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// test numeric_limits
|
|
|
|
|
|
|
|
// max()
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include <climits>
|
|
|
|
#include <cwchar>
|
|
|
|
#include <cfloat>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
void
|
|
|
|
test(T expected)
|
|
|
|
{
|
|
|
|
assert(std::numeric_limits<T>::max() == expected);
|
|
|
|
assert(std::numeric_limits<T>::is_bounded);
|
|
|
|
assert(std::numeric_limits<const T>::max() == expected);
|
|
|
|
assert(std::numeric_limits<const T>::is_bounded);
|
|
|
|
assert(std::numeric_limits<volatile T>::max() == expected);
|
|
|
|
assert(std::numeric_limits<volatile T>::is_bounded);
|
|
|
|
assert(std::numeric_limits<const volatile T>::max() == expected);
|
|
|
|
assert(std::numeric_limits<const volatile T>::is_bounded);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test<bool>(true);
|
|
|
|
test<char>(CHAR_MAX);
|
|
|
|
test<signed char>(SCHAR_MAX);
|
|
|
|
test<unsigned char>(UCHAR_MAX);
|
|
|
|
test<wchar_t>(WCHAR_MAX);
|
|
|
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
|
|
|
test<char16_t>(USHRT_MAX);
|
|
|
|
test<char32_t>(UINT_MAX);
|
2010-08-22 02:31:12 +02:00
|
|
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
2010-05-11 21:42:16 +02:00
|
|
|
test<short>(SHRT_MAX);
|
|
|
|
test<unsigned short>(USHRT_MAX);
|
|
|
|
test<int>(INT_MAX);
|
|
|
|
test<unsigned int>(UINT_MAX);
|
|
|
|
test<long>(LONG_MAX);
|
|
|
|
test<unsigned long>(ULONG_MAX);
|
|
|
|
test<long long>(LLONG_MAX);
|
|
|
|
test<unsigned long long>(ULLONG_MAX);
|
|
|
|
test<float>(FLT_MAX);
|
|
|
|
test<double>(DBL_MAX);
|
|
|
|
test<long double>(LDBL_MAX);
|
|
|
|
}
|