diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-11-17 21:04:24 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-11-17 21:04:24 +0000 |
commit | 1867554cc69872f17f6ed0a6cdd91daea6e2b0e1 (patch) | |
tree | 7a14cb005929ab355637e43e06e4d2071a8ae90e /libcxx/test/std/utilities/function.objects | |
parent | fbee89263f95e818aff08f1b2dc25ce0fafaffbb (diff) | |
download | bcm5719-llvm-1867554cc69872f17f6ed0a6cdd91daea6e2b0e1.tar.gz bcm5719-llvm-1867554cc69872f17f6ed0a6cdd91daea6e2b0e1.zip |
Add tests for the extended integer types - as required by LWG#2119
llvm-svn: 253376
Diffstat (limited to 'libcxx/test/std/utilities/function.objects')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp b/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp index 7cd9f15e93d..d3db45fad7c 100644 --- a/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/unord.hash/integral.pass.cpp @@ -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>(); } |