Add tests for the extended integer types - as required by LWG#2119

llvm-svn: 253376
This commit is contained in:
Marshall Clow 2015-11-17 21:04:24 +00:00
parent fbee89263f
commit 1867554cc6
1 changed files with 40 additions and 0 deletions

View File

@ -57,4 +57,44 @@ int main()
test<unsigned long>();
test<long long>();
test<unsigned long long>();
// LWG #2119
test<ptrdiff_t>();
test<size_t>();
test<int8_t>();
test<int16_t>();
test<int32_t>();
test<int64_t>();
test<int_fast8_t>();
test<int_fast16_t>();
test<int_fast32_t>();
test<int_fast64_t>();
test<int_least8_t>();
test<int_least16_t>();
test<int_least32_t>();
test<int_least64_t>();
test<intmax_t>();
test<intptr_t>();
test<uint8_t>();
test<uint16_t>();
test<uint32_t>();
test<uint64_t>();
test<uint_fast8_t>();
test<uint_fast16_t>();
test<uint_fast32_t>();
test<uint_fast64_t>();
test<uint_least8_t>();
test<uint_least16_t>();
test<uint_least32_t>();
test<uint_least64_t>();
test<uintmax_t>();
test<uintptr_t>();
}