libcxx initial import
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103490 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
||||
//
|
||||
// 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);
|
||||
#endif
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user