From 37d011d96d43746a422a46e2992bf13aae6f5e13 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 16 Dec 2018 12:07:54 +0000 Subject: [PATCH 1/1] Import llvm-toolchain-7_7.0.1.orig-libcxx.tar.bz2 [dgit import orig llvm-toolchain-7_7.0.1.orig-libcxx.tar.bz2] --- .arcconfig | 4 + .clang-format | 13 + .gitignore | 61 + CMakeLists.txt | 760 + CREDITS.TXT | 150 + LICENSE.TXT | 76 + NOTES.TXT | 29 + TODO.TXT | 76 + appveyor-reqs-install.cmd | 53 + appveyor.yml | 78 + benchmarks/CMakeLists.txt | 157 + benchmarks/ContainerBenchmarks.hpp | 113 + benchmarks/GenerateInput.hpp | 144 + benchmarks/algorithms.bench.cpp | 62 + benchmarks/filesystem.bench.cpp | 163 + benchmarks/string.bench.cpp | 70 + benchmarks/stringstream.bench.cpp | 38 + benchmarks/unordered_set_operations.bench.cpp | 306 + benchmarks/util_smartptr.bench.cpp | 42 + benchmarks/vector_operations.bench.cpp | 32 + cmake/Modules/CheckLibcxxAtomic.cmake | 54 + cmake/Modules/CodeCoverage.cmake | 50 + cmake/Modules/HandleCompilerRT.cmake | 61 + cmake/Modules/HandleLibCXXABI.cmake | 132 + cmake/Modules/HandleLibcxxFlags.cmake | 206 + cmake/Modules/HandleOutOfTreeLLVM.cmake | 139 + .../Modules/MacroEnsureOutOfSourceBuild.cmake | 18 + cmake/config-ix.cmake | 87 + docs/BuildingLibcxx.rst | 522 + docs/CMakeLists.txt | 9 + docs/DesignDocs/ABIVersioning.rst | 17 + docs/DesignDocs/AvailabilityMarkup.rst | 114 + docs/DesignDocs/CapturingConfigInfo.rst | 88 + docs/DesignDocs/DebugMode.rst | 100 + docs/DesignDocs/FileTimeType.rst | 494 + docs/DesignDocs/ThreadingSupportAPI.rst | 83 + docs/DesignDocs/VisibilityMacros.rst | 212 + docs/Makefile.sphinx | 37 + docs/README.txt | 13 + docs/TestingLibcxx.rst | 266 + docs/UsingLibcxx.rst | 240 + docs/conf.py | 251 + docs/index.rst | 189 + fuzzing/RoutineNames.txt | 20 + fuzzing/fuzz_test.cpp | 195 + fuzzing/fuzzing.cpp | 605 + fuzzing/fuzzing.h | 62 + include/CMakeLists.txt | 273 + include/__bit_reference | 1280 + include/__bsd_locale_defaults.h | 37 + include/__bsd_locale_fallbacks.h | 140 + include/__config | 1376 + include/__config_site.in | 34 + include/__debug | 302 + include/__errc | 218 + include/__functional_03 | 1592 + include/__functional_base | 653 + include/__functional_base_03 | 224 + include/__hash_table | 2790 ++ include/__libcpp_version | 1 + include/__locale | 1523 + include/__mutex_base | 440 + include/__node_handle | 213 + include/__nullptr | 62 + include/__split_buffer | 637 + include/__sso_allocator | 77 + include/__std_stream | 362 + include/__string | 877 + include/__threading_support | 402 + include/__tree | 2843 ++ include/__tuple | 556 + include/__undef_macros | 34 + include/algorithm | 5821 ++++ include/any | 667 + include/array | 485 + include/atomic | 1891 ++ include/bitset | 1110 + include/cassert | 25 + include/ccomplex | 29 + include/cctype | 121 + include/cerrno | 33 + include/cfenv | 82 + include/cfloat | 80 + include/charconv | 610 + include/chrono | 1660 + include/cinttypes | 258 + include/ciso646 | 25 + include/climits | 48 + include/clocale | 55 + include/cmath | 611 + include/codecvt | 550 + include/compare | 679 + include/complex | 1495 + include/complex.h | 37 + include/condition_variable | 269 + include/csetjmp | 48 + include/csignal | 58 + include/cstdarg | 48 + include/cstdbool | 32 + include/cstddef | 113 + include/cstdint | 191 + include/cstdio | 172 + include/cstdlib | 164 + include/cstring | 97 + include/ctgmath | 29 + include/ctime | 82 + include/ctype.h | 60 + include/cwchar | 193 + include/cwctype | 87 + include/deque | 2933 ++ include/errno.h | 398 + include/exception | 337 + include/experimental/__config | 74 + include/experimental/__memory | 90 + include/experimental/algorithm | 60 + include/experimental/any | 11 + include/experimental/chrono | 11 + include/experimental/coroutine | 336 + include/experimental/deque | 47 + include/experimental/dynarray | 305 + include/experimental/filesystem | 257 + include/experimental/forward_list | 47 + include/experimental/functional | 462 + include/experimental/iterator | 114 + include/experimental/list | 47 + include/experimental/map | 57 + include/experimental/memory_resource | 427 + include/experimental/numeric | 11 + include/experimental/optional | 11 + include/experimental/propagate_const | 579 + include/experimental/ratio | 11 + include/experimental/regex | 62 + include/experimental/set | 57 + include/experimental/simd | 1570 + include/experimental/string | 62 + include/experimental/string_view | 11 + include/experimental/system_error | 11 + include/experimental/tuple | 11 + include/experimental/type_traits | 155 + include/experimental/unordered_map | 65 + include/experimental/unordered_set | 59 + include/experimental/utility | 47 + include/experimental/vector | 47 + include/ext/__hash | 135 + include/ext/hash_map | 984 + include/ext/hash_set | 663 + include/filesystem | 2682 ++ include/float.h | 94 + include/forward_list | 1750 ++ include/fstream | 1764 ++ include/functional | 2524 ++ include/future | 2618 ++ include/initializer_list | 118 + include/inttypes.h | 258 + include/iomanip | 670 + include/ios | 1048 + include/iosfwd | 204 + include/iostream | 64 + include/istream | 1476 + include/iterator | 1885 ++ include/limits | 817 + include/limits.h | 65 + include/list | 2456 ++ include/locale | 4336 +++ include/locale.h | 45 + include/map | 2060 ++ include/math.h | 1531 + include/memory | 5655 ++++ include/module.modulemap | 605 + include/mutex | 702 + include/new | 316 + include/numeric | 526 + include/optional | 1408 + include/ostream | 1102 + include/queue | 804 + include/random | 6744 ++++ include/ratio | 533 + include/regex | 6614 ++++ include/scoped_allocator | 683 + include/set | 1299 + include/setjmp.h | 45 + include/shared_mutex | 507 + include/span | 608 + include/sstream | 986 + include/stack | 322 + include/stdbool.h | 39 + include/stddef.h | 63 + include/stdexcept | 278 + include/stdint.h | 121 + include/stdio.h | 120 + include/stdlib.h | 126 + include/streambuf | 501 + include/string | 4304 +++ include/string.h | 110 + include/string_view | 827 + include/strstream | 400 + include/support/android/locale_bionic.h | 68 + include/support/fuchsia/xlocale.h | 23 + include/support/ibm/limits.h | 99 + include/support/ibm/locale_mgmt_aix.h | 85 + include/support/ibm/support.h | 54 + include/support/ibm/xlocale.h | 271 + include/support/musl/xlocale.h | 58 + include/support/newlib/xlocale.h | 28 + include/support/solaris/floatingpoint.h | 14 + include/support/solaris/wchar.h | 47 + include/support/solaris/xlocale.h | 77 + include/support/win32/limits_msvc_win32.h | 72 + include/support/win32/locale_win32.h | 199 + include/support/xlocale/__nop_locale_mgmt.h | 52 + include/support/xlocale/__posix_l_fallback.h | 165 + include/support/xlocale/__strtonum_fallback.h | 67 + include/support/xlocale/xlocale.h | 0 include/system_error | 487 + include/tgmath.h | 37 + include/thread | 484 + include/tuple | 1412 + include/type_traits | 4856 +++ include/typeindex | 103 + include/typeinfo | 240 + include/unordered_map | 2178 ++ include/unordered_set | 1434 + include/utility | 1596 + include/valarray | 4927 +++ include/variant | 1594 + include/vector | 3399 ++ include/version | 25 + include/wchar.h | 182 + include/wctype.h | 79 + lib/CMakeLists.txt | 448 + lib/abi/3.9/x86_64-apple-darwin16.abilist | 2448 ++ lib/abi/3.9/x86_64-linux-gnu.abilist | 2010 ++ lib/abi/4.0/x86_64-apple-darwin16.abilist | 2376 ++ lib/abi/4.0/x86_64-unknown-linux-gnu.abilist | 1905 ++ lib/abi/5.0/x86_64-apple-darwin16.abilist | 2378 ++ lib/abi/5.0/x86_64-unknown-linux-gnu.abilist | 1883 ++ lib/abi/6.0/x86_64-apple-darwin16.abilist | 2378 ++ lib/abi/6.0/x86_64-unknown-linux-gnu.abilist | 1883 ++ lib/abi/CHANGELOG.TXT | 214 + lib/abi/CMakeLists.txt | 26 + lib/abi/README.TXT | 8 + lib/abi/x86_64-apple-darwin.v1.abilist | 2378 ++ lib/abi/x86_64-apple-darwin.v2.abilist | 2418 ++ lib/abi/x86_64-unknown-linux-gnu.v1.abilist | 1885 ++ lib/libc++abi-new-delete.exp | 8 + lib/libc++abi.exp | 160 + lib/libc++abi2.exp | 313 + lib/libc++sjlj-abi.exp | 160 + lib/libc++unexp.exp | 19 + lib/notweak.exp | 5 + lib/weak.exp | 16 + src/algorithm.cpp | 91 + src/any.cpp | 35 + src/bind.cpp | 30 + src/charconv.cpp | 233 + src/chrono.cpp | 220 + src/condition_variable.cpp | 93 + src/debug.cpp | 618 + src/exception.cpp | 37 + src/experimental/memory_resource.cpp | 154 + src/filesystem/directory_iterator.cpp | 396 + src/filesystem/filesystem_common.h | 429 + src/filesystem/int128_builtins.cpp | 55 + src/filesystem/operations.cpp | 1685 + src/functional.cpp | 26 + src/future.cpp | 281 + src/hash.cpp | 570 + src/include/apple_availability.h | 52 + src/include/atomic_support.h | 177 + src/include/config_elast.h | 40 + src/include/refstring.h | 128 + src/ios.cpp | 467 + src/iostream.cpp | 124 + src/locale.cpp | 6163 ++++ src/memory.cpp | 235 + src/mutex.cpp | 258 + src/new.cpp | 304 + src/optional.cpp | 42 + src/random.cpp | 179 + src/regex.cpp | 315 + src/shared_mutex.cpp | 116 + src/stdexcept.cpp | 104 + src/string.cpp | 525 + src/strstream.cpp | 336 + src/support/runtime/exception_fallback.ipp | 181 + src/support/runtime/exception_glibcxx.ipp | 38 + src/support/runtime/exception_libcxxabi.ipp | 28 + src/support/runtime/exception_libcxxrt.ipp | 41 + src/support/runtime/exception_msvc.ipp | 178 + .../runtime/exception_pointer_cxxabi.ipp | 74 + .../runtime/exception_pointer_glibcxx.ipp | 78 + .../runtime/exception_pointer_msvc.ipp | 87 + .../exception_pointer_unimplemented.ipp | 80 + src/support/runtime/new_handler_fallback.ipp | 27 + src/support/solaris/README | 4 + src/support/solaris/mbsnrtowcs.inc | 76 + src/support/solaris/wcsnrtombs.inc | 93 + src/support/solaris/xlocale.cpp | 69 + src/support/win32/locale_win32.cpp | 123 + src/support/win32/support.cpp | 155 + src/support/win32/thread_win32.cpp | 276 + src/system_error.cpp | 296 + src/thread.cpp | 222 + src/typeinfo.cpp | 58 + src/utility.cpp | 16 + src/valarray.cpp | 54 + src/variant.cpp | 18 + src/vector.cpp | 16 + test/CMakeLists.txt | 129 + .../random_shuffle.cxx1z.pass.cpp | 47 + test/libcxx/algorithms/debug_less.pass.cpp | 167 + test/libcxx/algorithms/version.pass.cpp | 20 + .../atomics/atomics.align/align.pass.sh.cpp | 93 + .../atomics/atomics.flag/init_bool.pass.cpp | 44 + .../diagnose_invalid_memory_order.fail.cpp | 128 + .../atomics/libcpp-has-no-threads.fail.cpp | 24 + .../atomics/libcpp-has-no-threads.pass.cpp | 18 + test/libcxx/atomics/version.pass.cpp | 22 + .../associative/map/version.pass.cpp | 20 + .../associative/non_const_comparator.fail.cpp | 47 + .../associative/set/version.pass.cpp | 20 + .../tree_balance_after_insert.pass.cpp | 1619 + .../tree_key_value_traits.pass.cpp | 59 + .../associative/tree_left_rotate.pass.cpp | 101 + .../associative/tree_remove.pass.cpp | 1651 + .../associative/tree_right_rotate.pass.cpp | 101 + .../associative/undef_min_max.pass.cpp | 22 + .../container.adaptors/queue/version.pass.cpp | 20 + .../container.adaptors/stack/version.pass.cpp | 20 + .../containers/gnu_cxx/hash_map.pass.cpp | 26 + .../containers/gnu_cxx/hash_set.pass.cpp | 26 + .../array/array.zero/db_back.pass.cpp | 49 + .../array/array.zero/db_front.pass.cpp | 49 + .../array/array.zero/db_indexing.pass.cpp | 53 + .../sequences/array/version.pass.cpp | 20 + .../sequences/deque/incomplete.pass.cpp | 32 + .../sequences/deque/version.pass.cpp | 20 + .../sequences/forwardlist/version.pass.cpp | 20 + .../sequences/list/list.cons/db_copy.pass.cpp | 31 + .../sequences/list/list.cons/db_move.pass.cpp | 35 + .../list/list.modifiers/emplace_db1.pass.cpp | 47 + .../list.modifiers/erase_iter_db1.pass.cpp | 31 + .../list.modifiers/erase_iter_db2.pass.cpp | 32 + .../erase_iter_iter_db1.pass.cpp | 32 + .../erase_iter_iter_db2.pass.cpp | 31 + .../erase_iter_iter_db3.pass.cpp | 31 + .../erase_iter_iter_db4.pass.cpp | 30 + .../insert_iter_iter_iter_db1.pass.cpp | 39 + .../insert_iter_rvalue_db1.pass.cpp | 30 + .../insert_iter_size_value_db1.pass.cpp | 30 + .../insert_iter_value_db1.pass.cpp | 32 + .../list/list.modifiers/pop_back_db1.pass.cpp | 36 + .../list/list.ops/db_splice_pos_list.pass.cpp | 32 + .../list.ops/db_splice_pos_list_iter.pass.cpp | 32 + .../db_splice_pos_list_iter_iter.pass.cpp | 32 + .../sequences/list/version.pass.cpp | 20 + .../containers/sequences/vector/asan.pass.cpp | 73 + .../sequences/vector/asan_throw.pass.cpp | 234 + .../vector/const_value_type.pass.cpp | 22 + .../sequences/vector/db_back.pass.cpp | 56 + .../sequences/vector/db_cback.pass.cpp | 52 + .../sequences/vector/db_cfront.pass.cpp | 52 + .../sequences/vector/db_cindex.pass.cpp | 54 + .../sequences/vector/db_front.pass.cpp | 56 + .../sequences/vector/db_index.pass.cpp | 56 + .../sequences/vector/db_iterators_2.pass.cpp | 54 + .../sequences/vector/db_iterators_3.pass.cpp | 54 + .../sequences/vector/db_iterators_4.pass.cpp | 56 + .../sequences/vector/db_iterators_5.pass.cpp | 60 + .../sequences/vector/db_iterators_6.pass.cpp | 58 + .../sequences/vector/db_iterators_7.pass.cpp | 58 + .../sequences/vector/db_iterators_8.pass.cpp | 54 + .../sequences/vector/version.pass.cpp | 20 + .../unord/key_value_traits.pass.cpp | 59 + .../containers/unord/next_pow2.pass.cpp | 88 + .../containers/unord/next_prime.pass.cpp | 51 + .../unord/non_const_comparator.fail.cpp | 56 + .../unord/unord.map/db_iterators_7.pass.cpp | 60 + .../unord/unord.map/db_iterators_8.pass.cpp | 56 + .../unord.map/db_local_iterators_7.pass.cpp | 57 + .../unord.map/db_local_iterators_8.pass.cpp | 54 + .../unord/unord.map/version.pass.cpp | 20 + .../missing_hash_specialization.fail.cpp | 70 + .../unord/unord.set/version.pass.cpp | 20 + .../db_associative_container_tests.pass.cpp | 70 + .../db_sequence_container_iterators.pass.cpp | 327 + .../debug/containers/db_string.pass.cpp | 100 + .../db_unord_container_tests.pass.cpp | 71 + test/libcxx/debug/debug_abort.pass.cpp | 36 + test/libcxx/debug/debug_throw.pass.cpp | 41 + .../debug/debug_throw_register.pass.cpp | 36 + .../auto.ptr/auto_ptr.cxx1z.pass.cpp | 29 + .../depr/depr.c.headers/ciso646.pass.cpp | 20 + .../depr/depr.c.headers/complex.h.pass.cpp | 22 + .../depr/depr.c.headers/extern_c.pass.cpp | 43 + .../depr/depr.c.headers/locale_h.pass.cpp | 20 + test/libcxx/depr/depr.c.headers/math_h.sh.cpp | 23 + .../depr/depr.c.headers/tgmath_h.pass.cpp | 24 + .../depr.adaptors.cxx1z.pass.cpp | 48 + .../depr/depr.str.strstreams/version.pass.cpp | 20 + .../enable_removed_cpp17_features.pass.cpp | 26 + .../get_unexpected.pass.cpp | 42 + .../set_unexpected.pass.cpp | 37 + .../exception.unexpected/unexpected.pass.cpp | 28 + .../unexpected_disabled_cpp17.fail.cpp | 23 + .../assertions/version_cassert.pass.cpp | 20 + .../diagnostics/errno/version_cerrno.pass.cpp | 19 + test/libcxx/diagnostics/nodiscard.fail.cpp | 24 + test/libcxx/diagnostics/nodiscard.pass.cpp | 25 + .../std.exceptions/version.pass.cpp | 20 + .../diagnostics/syserr/version.pass.cpp | 20 + test/libcxx/double_include.sh.cpp | 173 + .../header.algorithm.synop/includes.pass.cpp | 20 + .../experimental/algorithms/version.pass.cpp | 20 + .../dynarray/dynarray.cons/alloc.pass.cpp | 83 + .../dynarray/dynarray.cons/default.pass.cpp | 102 + .../default_throws_bad_alloc.pass.cpp | 35 + .../dynarray/dynarray.data/default.pass.cpp | 69 + .../dynarray/dynarray.mutate/default.pass.cpp | 47 + .../dynarray/dynarray.overview/at.pass.cpp | 94 + .../dynarray.overview/begin_end.pass.cpp | 110 + .../dynarray.overview/capacity.pass.cpp | 56 + .../dynarray.overview/front_back.pass.cpp | 74 + .../dynarray.overview/indexing.pass.cpp | 76 + .../dynarray/dynarray.traits/default.pass.cpp | 28 + .../dynarray/dynarray.zero/default.pass.cpp | 48 + .../sequences/dynarray/lit.local.cfg | 3 + .../sequences/dynarray/nothing_to_do.pass.cpp | 12 + .../experimental/filesystem/version.pass.cpp | 20 + .../support.coroutines/dialect_support.sh.cpp | 59 + .../support.coroutines/version.sh.cpp | 25 + .../construct_piecewise_pair.pass.cpp | 178 + .../db_deallocate.pass.cpp | 42 + .../db_deallocate.pass.cpp | 45 + .../header_deque_libcpp_version.pass.cpp | 22 + ...eader_forward_list_libcpp_version.pass.cpp | 22 + .../header_list_libcpp_version.pass.cpp | 22 + .../header_map_libcpp_version.pass.cpp | 22 + .../header_regex_libcpp_version.pass.cpp | 22 + .../header_set_libcpp_version.pass.cpp | 22 + .../header_string_libcpp_version.pass.cpp | 22 + ...ader_unordered_map_libcpp_version.pass.cpp | 22 + ...ader_unordered_set_libcpp_version.pass.cpp | 22 + .../header_vector_libcpp_version.pass.cpp | 22 + .../global_memory_resource_lifetime.pass.cpp | 61 + .../new_delete_resource_lifetime.pass.cpp | 53 + .../memory.resource.synop/version.pass.cpp | 22 + .../utilities/meta/version.pass.cpp | 20 + .../utilities/utility/version.pass.cpp | 20 + .../extensions/hash/specializations.fail.cpp | 17 + .../extensions/hash/specializations.pass.cpp | 31 + .../hash_map/const_iterator.fail.cpp | 18 + test/libcxx/extensions/nothing_to_do.pass.cpp | 12 + test/libcxx/fuzzing/nth_element.cpp | 38 + test/libcxx/fuzzing/partial_sort.cpp | 38 + test/libcxx/fuzzing/partial_sort_copy.cpp | 38 + test/libcxx/fuzzing/partition.cpp | 38 + test/libcxx/fuzzing/partition_copy.cpp | 38 + test/libcxx/fuzzing/regex_ECMAScript.cpp | 37 + test/libcxx/fuzzing/regex_POSIX.cpp | 37 + test/libcxx/fuzzing/regex_awk.cpp | 37 + test/libcxx/fuzzing/regex_egrep.cpp | 37 + test/libcxx/fuzzing/regex_extended.cpp | 37 + test/libcxx/fuzzing/regex_grep.cpp | 37 + test/libcxx/fuzzing/sort.cpp | 38 + test/libcxx/fuzzing/stable_partition.cpp | 38 + test/libcxx/fuzzing/stable_sort.cpp | 38 + test/libcxx/fuzzing/unique.cpp | 38 + test/libcxx/fuzzing/unique_copy.cpp | 38 + test/libcxx/include_as_c.sh.cpp | 37 + .../fopen.fail.cpp | 17 + .../rename.fail.cpp | 17 + .../c.files/version_ccstdio.pass.cpp | 20 + .../c.files/version_cinttypes.pass.cpp | 20 + .../fstreams/filebuf/traits_mismatch.fail.cpp | 24 + .../fstream.cons/wchar_pointer.pass.cpp | 46 + .../open_wchar_pointer.pass.cpp | 52 + .../fstreams/ifstream.cons/test.dat | 1 + .../ifstream.cons/wchar_pointer.pass.cpp | 42 + .../open_wchar_pointer.pass.cpp | 48 + .../fstreams/ifstream.members/test.dat | 1 + .../ofstream.cons/wchar_pointer.pass.cpp | 60 + .../open_wchar_pointer.pass.cpp | 60 + .../fstreams/traits_mismatch.fail.cpp | 30 + .../file.streams/fstreams/version.pass.cpp | 20 + .../last_write_time.sh.cpp | 93 + .../class.path/path.itr/iterator_db.pass.cpp | 75 + ...erse_iterator_produces_diagnostic.fail.cpp | 29 + .../class.path/path.req/is_pathable.pass.cpp | 104 + .../filesystems/convert_file_time.sh.cpp | 307 + .../input.output/filesystems/lit.local.cfg | 3 + .../input.output/filesystems/version.pass.cpp | 20 + .../input.streams/traits_mismatch.fail.cpp | 29 + .../input.streams/version.pass.cpp | 20 + .../output.streams/traits_mismatch.fail.cpp | 29 + .../output.streams/version.pass.cpp | 20 + .../std.manip/version.pass.cpp | 20 + .../iostream.forward/version.pass.cpp | 20 + .../iostream.objects/version.pass.cpp | 20 + .../iostreams.base/version.pass.cpp | 20 + .../stream.buffers/version.pass.cpp | 20 + .../string.streams/traits_mismatch.fail.cpp | 26 + .../string.streams/version.pass.cpp | 20 + test/libcxx/iterators/failed.pass.cpp | 32 + .../iterators/trivial_iterators.pass.cpp | 188 + test/libcxx/iterators/version.pass.cpp | 20 + .../language.support/cmp/version.pass.cpp | 20 + .../language.support/cstdint/version.pass.cpp | 20 + .../cxa_deleted_virtual.pass.cpp | 27 + .../has_c11_features.pass.cpp | 32 + .../new.badlength/bad_array_length.pass.cpp | 37 + .../new_faligned_allocation.sh.cpp | 88 + .../support.dynamic/version.pass.cpp | 20 + .../support.exception/version.pass.cpp | 20 + .../support.initlist/version.pass.cpp | 20 + .../c.limits/version_cfloat.pass.cpp | 20 + .../c.limits/version_climits.pass.cpp | 20 + .../support.limits/limits/version.pass.cpp | 20 + .../support.limits/version.pass.cpp | 20 + .../support.rtti/version.pass.cpp | 20 + .../support.runtime/version_csetjmp.pass.cpp | 20 + .../support.runtime/version_csignal.pass.cpp | 20 + .../support.runtime/version_cstdarg.pass.cpp | 20 + .../support.runtime/version_cstdbool.pass.cpp | 20 + .../support.runtime/version_cstdlib.pass.cpp | 20 + .../support.runtime/version_ctime.pass.cpp | 20 + .../support.types/version.pass.cpp | 20 + test/libcxx/libcpp_version.pass.cpp | 28 + .../localization/c.locales/version.pass.cpp | 20 + .../locale.categories/__scan_keyword.pass.cpp | 118 + .../locale.stdcvt/version.pass.cpp | 20 + .../conversions.string/ctor_move.pass.cpp | 38 + .../locale.types/locale.facet/facet.pass.cpp | 53 + .../locale/locale.types/locale.id/id.pass.cpp | 50 + test/libcxx/localization/version.pass.cpp | 20 + .../memory/aligned_allocation_macro.pass.cpp | 27 + test/libcxx/memory/is_allocator.pass.cpp | 42 + test/libcxx/min_max_macros.sh.cpp | 282 + test/libcxx/modules/cinttypes_exports.sh.cpp | 25 + test/libcxx/modules/clocale_exports.sh.cpp | 28 + test/libcxx/modules/cstdint_exports.sh.cpp | 25 + test/libcxx/modules/inttypes_h_exports.sh.cpp | 24 + test/libcxx/modules/stdint_h_exports.sh.cpp | 20 + .../numerics/c.math/constexpr-fns.pass.cpp | 32 + test/libcxx/numerics/c.math/ctgmath.pass.cpp | 24 + .../c.math/fdelayed-template-parsing.sh.cpp | 28 + test/libcxx/numerics/c.math/tgmath_h.pass.cpp | 20 + .../numerics/c.math/version_cmath.pass.cpp | 20 + test/libcxx/numerics/cfenv/version.pass.cpp | 22 + .../numerics/complex.number/__sqr.pass.cpp | 81 + .../complex.number/ccmplx/ccomplex.pass.cpp | 22 + .../numerics/complex.number/version.pass.cpp | 20 + .../libcxx/numerics/numarray/version.pass.cpp | 20 + .../numerics/numeric.ops/version.pass.cpp | 20 + .../rand/rand.synopsis/version.pass.cpp | 20 + test/libcxx/selftest/not_test.sh.cpp | 17 + test/libcxx/selftest/test.arc.fail.mm | 13 + test/libcxx/selftest/test.arc.pass.mm | 17 + test/libcxx/selftest/test.fail.cpp | 11 + test/libcxx/selftest/test.fail.mm | 13 + test/libcxx/selftest/test.pass.cpp | 13 + test/libcxx/selftest/test.pass.mm | 17 + test/libcxx/selftest/test.sh.cpp | 16 + test/libcxx/selftest/test_macros.pass.cpp | 66 + .../clear_and_shrink_db1.pass.cpp | 48 + .../string.modifiers/erase_iter_db1.pass.cpp | 50 + .../string.modifiers/erase_iter_db2.pass.cpp | 52 + .../erase_iter_iter_db1.pass.cpp | 50 + .../erase_iter_iter_db2.pass.cpp | 50 + .../erase_iter_iter_db3.pass.cpp | 50 + .../erase_iter_iter_db4.pass.cpp | 48 + .../erase_pop_back_db1.pass.cpp | 32 + .../insert_iter_char_db1.pass.cpp | 34 + .../insert_iter_size_char_db1.pass.cpp | 31 + .../strings/c.strings/version_cctype.pass.cpp | 20 + .../c.strings/version_cstring.pass.cpp | 20 + .../strings/c.strings/version_cuchar.pass.cpp | 22 + .../strings/c.strings/version_cwchar.pass.cpp | 20 + .../c.strings/version_cwctype.pass.cpp | 20 + .../strings/iterators.exceptions.pass.cpp | 88 + .../strings/iterators.noexcept.pass.cpp | 81 + test/libcxx/strings/version.pass.cpp | 20 + .../futures.promise/set_exception.pass.cpp | 56 + .../set_exception_at_thread_exit.pass.cpp | 56 + .../futures/futures.task/types.pass.cpp | 31 + test/libcxx/thread/futures/version.pass.cpp | 22 + ...otify_from_pthread_created_thread.pass.cpp | 76 + .../native_handle.pass.cpp | 31 + .../thread/thread.condition/version.pass.cpp | 22 + .../thread.mutex.class/native_handle.pass.cpp | 29 + .../native_handle.pass.cpp | 29 + ...ad_safety_annotations_not_enabled.pass.cpp | 26 + .../thread_safety_lock_guard.pass.cpp | 30 + .../thread_safety_lock_unlock.pass.cpp | 31 + .../thread_safety_missing_unlock.fail.cpp | 28 + ...thread_safety_requires_capability.pass.cpp | 35 + .../thread/thread.mutex/version.pass.cpp | 20 + .../native_handle.pass.cpp | 56 + .../thread.thread.class/types.pass.cpp | 28 + .../thread.thread.this/sleep_for.pass.cpp | 69 + .../thread/thread.threads/version.pass.cpp | 22 + .../type_traits/convert_to_integral.pass.cpp | 109 + .../type_traits/is_floating_point.pass.cpp | 24 + .../type_traits/lazy_metafunctions.pass.cpp | 137 + .../utilities/any/size_and_alignment.pass.cpp | 23 + test/libcxx/utilities/any/small_type.pass.cpp | 114 + test/libcxx/utilities/any/version.pass.cpp | 20 + .../func.require/bullet_1_2_3.pass.cpp | 371 + .../func.require/bullet_4_5_6.pass.cpp | 216 + .../func.require/bullet_7.pass.cpp | 327 + .../func.require/invoke.pass.cpp | 45 + .../func.require/invoke_helpers.h | 456 + .../function.objects/refwrap/binary.pass.cpp | 80 + .../function.objects/refwrap/unary.pass.cpp | 78 + ...h_ubsan_unsigned_overflow_ignored.pass.cpp | 41 + .../function.objects/version.pass.cpp | 20 + .../get_pointer_safety_cxx03.pass.cpp | 46 + .../get_pointer_safety_new_abi.pass.cpp | 38 + .../util.smartptr/race_condition.pass.cpp | 95 + .../function_type_default_deleter.fail.cpp | 44 + test/libcxx/utilities/memory/version.pass.cpp | 20 + .../utilities/meta/is_referenceable.pass.cpp | 193 + .../__has_operator_addressof.pass.cpp | 69 + .../missing_is_aggregate_trait.fail.cpp | 28 + test/libcxx/utilities/meta/version.pass.cpp | 20 + .../optional.object.assign/copy.pass.cpp | 74 + .../optional.object.assign/move.pass.cpp | 71 + .../optional.object.ctor/copy.pass.cpp | 59 + .../optional.object.ctor/move.pass.cpp | 60 + .../utilities/optional/version.pass.cpp | 20 + test/libcxx/utilities/ratio/version.pass.cpp | 20 + .../template.bitset/includes.pass.cpp | 32 + .../template.bitset/version.pass.cpp | 20 + .../date.time/asctime.thread-unsafe.fail.cpp | 18 + .../date.time/ctime.thread-unsafe.fail.cpp | 18 + .../date.time/gmtime.thread-unsafe.fail.cpp | 18 + .../localtime.thread-unsafe.fail.cpp | 18 + test/libcxx/utilities/time/version.pass.cpp | 20 + .../tuple/tuple.tuple/empty_member.pass.cpp | 46 + ...855_tuple_ref_binding_diagnostics.fail.cpp | 85 + ...ed_arity_initialization_extension.pass.cpp | 108 + ...ed_arity_initialization_extension.pass.cpp | 117 + test/libcxx/utilities/tuple/version.pass.cpp | 20 + .../utilities/type.index/version.pass.cpp | 20 + .../utility/__is_inplace_index.pass.cpp | 34 + .../utility/__is_inplace_type.pass.cpp | 34 + .../pairs.pair/assign_tuple_like.pass.cpp | 104 + .../non_trivial_copy_move_ABI.pass.cpp | 152 + .../pairs.pair/pair.tuple_element.fail.cpp | 25 + .../pairs.pair/trivial_copy_move_ABI.pass.cpp | 147 + .../libcxx/utilities/utility/version.pass.cpp | 20 + .../variant_alternative.fail.cpp | 36 + .../variant.variant/variant_size.pass.cpp | 68 + .../libcxx/utilities/variant/version.pass.cpp | 20 + test/lit.cfg | 54 + test/lit.site.cfg.in | 39 + test/nothing_to_do.pass.cpp | 13 + .../alg.c.library/tested_elsewhere.pass.cpp | 12 + .../alg.copy/copy.pass.cpp | 90 + .../alg.copy/copy_backward.pass.cpp | 70 + .../alg.copy/copy_if.pass.cpp | 97 + .../alg.copy/copy_n.pass.cpp | 93 + .../alg.fill/fill.pass.cpp | 75 + .../alg.fill/fill_n.pass.cpp | 174 + .../alg.generate/generate.pass.cpp | 65 + .../alg.generate/generate_n.pass.cpp | 88 + .../alg.move/move.pass.cpp | 131 + .../alg.move/move_backward.pass.cpp | 85 + .../alg.partitions/is_partitioned.pass.cpp | 98 + .../alg.partitions/partition.pass.cpp | 102 + .../alg.partitions/partition_copy.pass.cpp | 72 + .../alg.partitions/partition_point.pass.cpp | 93 + .../alg.partitions/stable_partition.pass.cpp | 314 + .../alg.random.sample/sample.fail.cpp | 41 + .../alg.random.sample/sample.pass.cpp | 160 + .../alg.random.sample/sample.stable.pass.cpp | 55 + .../random_shuffle.pass.cpp | 35 + .../random_shuffle_rand.pass.cpp | 42 + .../random_shuffle_urng.pass.cpp | 35 + .../alg.remove/remove.pass.cpp | 94 + .../alg.remove/remove_copy.pass.cpp | 89 + .../alg.remove/remove_copy_if.pass.cpp | 94 + .../alg.remove/remove_if.pass.cpp | 109 + .../alg.replace/replace.pass.cpp | 61 + .../alg.replace/replace_copy.pass.cpp | 93 + .../alg.replace/replace_copy_if.pass.cpp | 97 + .../alg.replace/replace_if.pass.cpp | 64 + .../alg.reverse/reverse.pass.cpp | 60 + .../alg.reverse/reverse_copy.pass.cpp | 99 + .../alg.rotate/rotate.pass.cpp | 438 + .../alg.rotate/rotate_copy.pass.cpp | 155 + .../alg.swap/iter_swap.pass.cpp | 27 + .../alg.swap/swap_ranges.pass.cpp | 154 + .../alg.transform/binary_transform.pass.cpp | 240 + .../alg.transform/unary_transform.pass.cpp | 101 + .../alg.unique/unique.pass.cpp | 202 + .../alg.unique/unique_copy.pass.cpp | 144 + .../alg.unique/unique_copy_pred.pass.cpp | 172 + .../alg.unique/unique_pred.pass.cpp | 244 + .../nothing_to_do.pass.cpp | 12 + .../alg.adjacent.find/adjacent_find.pass.cpp | 51 + .../adjacent_find_pred.pass.cpp | 58 + .../alg.all_of/all_of.pass.cpp | 62 + .../alg.any_of/any_of.pass.cpp | 70 + .../alg.nonmodifying/alg.count/count.pass.cpp | 47 + .../alg.count/count_if.pass.cpp | 57 + .../alg.nonmodifying/alg.equal/equal.pass.cpp | 92 + .../alg.equal/equal_pred.pass.cpp | 118 + .../alg.find.end/find_end.pass.cpp | 81 + .../alg.find.end/find_end_pred.pass.cpp | 110 + .../alg.find.first.of/find_first_of.pass.cpp | 73 + .../find_first_of_pred.pass.cpp | 79 + .../alg.nonmodifying/alg.find/find.pass.cpp | 46 + .../alg.find/find_if.pass.cpp | 57 + .../alg.find/find_if_not.pass.cpp | 57 + .../alg.foreach/for_each_n.pass.cpp | 80 + .../alg.foreach/test.pass.cpp | 55 + .../is_permutation.pass.cpp | 622 + .../is_permutation_pred.pass.cpp | 769 + .../alg.none_of/none_of.pass.cpp | 70 + .../alg.search/search.pass.cpp | 125 + .../alg.search/search_n.pass.cpp | 92 + .../alg.search/search_n_pred.pass.cpp | 171 + .../alg.search/search_pred.pass.cpp | 129 + .../mismatch/mismatch.pass.cpp | 93 + .../mismatch/mismatch_pred.pass.cpp | 118 + .../alg.nonmodifying/nothing_to_do.pass.cpp | 12 + .../binary.search/binary_search.pass.cpp | 80 + .../binary.search/binary_search_comp.pass.cpp | 81 + .../equal.range/equal_range.pass.cpp | 88 + .../equal.range/equal_range_comp.pass.cpp | 87 + .../lower.bound/lower_bound.pass.cpp | 83 + .../lower.bound/lower_bound_comp.pass.cpp | 83 + .../alg.binary.search/nothing_to_do.pass.cpp | 12 + .../upper.bound/upper_bound.pass.cpp | 80 + .../upper.bound/upper_bound_comp.pass.cpp | 83 + .../alg.sorting/alg.clamp/clamp.comp.pass.cpp | 127 + .../alg.sorting/alg.clamp/clamp.pass.cpp | 125 + .../is.heap/is_heap.pass.cpp | 536 + .../is.heap/is_heap_comp.pass.cpp | 537 + .../is.heap/is_heap_until.pass.cpp | 536 + .../is.heap/is_heap_until_comp.pass.cpp | 537 + .../make.heap/make_heap.pass.cpp | 42 + .../make.heap/make_heap_comp.pass.cpp | 101 + .../nothing_to_do.pass.cpp | 12 + .../pop.heap/pop_heap.pass.cpp | 42 + .../pop.heap/pop_heap_comp.pass.cpp | 71 + .../push.heap/push_heap.pass.cpp | 41 + .../push.heap/push_heap_comp.pass.cpp | 68 + .../sort.heap/sort_heap.pass.cpp | 43 + .../sort.heap/sort_heap_comp.pass.cpp | 68 + .../lexicographical_compare.pass.cpp | 85 + .../lexicographical_compare_comp.pass.cpp | 90 + .../alg.merge/inplace_merge.pass.cpp | 111 + .../alg.merge/inplace_merge_comp.pass.cpp | 171 + .../alg.sorting/alg.merge/merge.pass.cpp | 249 + .../alg.sorting/alg.merge/merge_comp.pass.cpp | 260 + .../alg.sorting/alg.min.max/max.pass.cpp | 56 + .../alg.sorting/alg.min.max/max_comp.pass.cpp | 58 + .../alg.min.max/max_element.pass.cpp | 83 + .../alg.min.max/max_element_comp.pass.cpp | 104 + .../alg.min.max/max_init_list.pass.cpp | 44 + .../alg.min.max/max_init_list_comp.pass.cpp | 45 + .../alg.sorting/alg.min.max/min.pass.cpp | 56 + .../alg.sorting/alg.min.max/min_comp.pass.cpp | 58 + .../alg.min.max/min_element.pass.cpp | 83 + .../alg.min.max/min_element_comp.pass.cpp | 104 + .../alg.min.max/min_init_list.pass.cpp | 44 + .../alg.min.max/min_init_list_comp.pass.cpp | 45 + .../alg.sorting/alg.min.max/minmax.pass.cpp | 64 + .../alg.min.max/minmax_comp.pass.cpp | 67 + .../alg.min.max/minmax_element.pass.cpp | 101 + .../alg.min.max/minmax_element_comp.pass.cpp | 108 + .../alg.min.max/minmax_init_list.pass.cpp | 41 + .../minmax_init_list_comp.pass.cpp | 76 + .../alg.nth.element/nth_element.pass.cpp | 66 + .../alg.nth.element/nth_element_comp.pass.cpp | 89 + .../next_permutation.pass.cpp | 66 + .../next_permutation_comp.pass.cpp | 68 + .../prev_permutation.pass.cpp | 66 + .../prev_permutation_comp.pass.cpp | 68 + .../includes/includes.pass.cpp | 101 + .../includes/includes_comp.pass.cpp | 104 + .../alg.set.operations/nothing_to_do.pass.cpp | 12 + .../set.difference/set_difference.pass.cpp | 200 + .../set_difference_comp.pass.cpp | 202 + .../set_intersection.pass.cpp | 221 + .../set_intersection_comp.pass.cpp | 224 + .../set_symmetric_difference.pass.cpp | 199 + .../set_symmetric_difference_comp.pass.cpp | 203 + .../set.union/set_union.pass.cpp | 198 + .../set.union/set_union_comp.pass.cpp | 200 + .../set.union/set_union_move.pass.cpp | 46 + .../alg.sort/is.sorted/is_sorted.pass.cpp | 196 + .../is.sorted/is_sorted_comp.pass.cpp | 197 + .../is.sorted/is_sorted_until.pass.cpp | 196 + .../is.sorted/is_sorted_until_comp.pass.cpp | 197 + .../alg.sort/nothing_to_do.pass.cpp | 12 + .../partial_sort_copy.pass.cpp | 89 + .../partial_sort_copy_comp.pass.cpp | 93 + .../partial.sort/partial_sort.pass.cpp | 70 + .../partial.sort/partial_sort_comp.pass.cpp | 96 + .../alg.sorting/alg.sort/sort/sort.pass.cpp | 156 + .../alg.sort/sort/sort_comp.pass.cpp | 57 + .../alg.sort/stable.sort/stable_sort.pass.cpp | 156 + .../stable.sort/stable_sort_comp.pass.cpp | 86 + .../alg.sorting/nothing_to_do.pass.cpp | 12 + .../algorithms.general/nothing_to_do.pass.cpp | 12 + .../atomic_signal_fence.pass.cpp | 21 + .../atomic_thread_fence.pass.cpp | 21 + .../atomics.flag/atomic_flag_clear.pass.cpp | 38 + .../atomic_flag_clear_explicit.pass.cpp | 66 + .../atomic_flag_test_and_set.pass.cpp | 36 + ...atomic_flag_test_and_set_explicit.pass.cpp | 96 + test/std/atomics/atomics.flag/clear.pass.cpp | 80 + .../atomics/atomics.flag/copy_assign.fail.cpp | 24 + .../atomics/atomics.flag/copy_ctor.fail.cpp | 23 + .../copy_volatile_assign.fail.cpp | 24 + .../std/atomics/atomics.flag/default.pass.cpp | 36 + test/std/atomics/atomics.flag/init.pass.cpp | 26 + .../atomics.flag/test_and_set.pass.cpp | 108 + .../atomics.general/nothing_to_do.pass.cpp | 13 + .../replace_failure_order.pass.cpp | 43 + .../isalwayslockfree.pass.cpp | 136 + .../atomics.lockfree/lockfree.pass.cpp | 60 + .../atomics.order/kill_dependency.pass.cpp | 23 + .../atomics.order/memory_order.pass.cpp | 33 + .../atomics.syn/nothing_to_do.pass.cpp | 13 + .../atomics.types.generic/address.pass.cpp | 143 + .../atomics.types.generic/bool.pass.cpp | 236 + .../cstdint_typedefs.pass.cpp | 69 + .../atomics.types.generic/integral.pass.cpp | 224 + .../integral_typedefs.pass.cpp | 75 + .../trivially_copyable.fail.cpp | 70 + .../trivially_copyable.pass.cpp | 77 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../atomic_compare_exchange_strong.pass.cpp | 62 + ..._compare_exchange_strong_explicit.pass.cpp | 69 + .../atomic_compare_exchange_weak.pass.cpp | 63 + ...ic_compare_exchange_weak_explicit.pass.cpp | 71 + .../atomic_exchange.pass.cpp | 48 + .../atomic_exchange_explicit.pass.cpp | 50 + .../atomic_fetch_add.pass.cpp | 83 + .../atomic_fetch_add_explicit.pass.cpp | 88 + .../atomic_fetch_and.pass.cpp | 51 + .../atomic_fetch_and_explicit.pass.cpp | 53 + .../atomic_fetch_or.pass.cpp | 51 + .../atomic_fetch_or_explicit.pass.cpp | 53 + .../atomic_fetch_sub.pass.cpp | 83 + .../atomic_fetch_sub_explicit.pass.cpp | 88 + .../atomic_fetch_xor.pass.cpp | 51 + .../atomic_fetch_xor_explicit.pass.cpp | 53 + .../atomic_helpers.h | 68 + .../atomic_init.pass.cpp | 45 + .../atomic_is_lock_free.pass.cpp | 48 + .../atomic_load.pass.cpp | 45 + .../atomic_load_explicit.pass.cpp | 45 + .../atomic_store.pass.cpp | 45 + .../atomic_store_explicit.pass.cpp | 45 + .../atomic_var_init.pass.cpp | 25 + .../ctor.pass.cpp | 64 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + test/std/containers/Copyable.h | 18 + test/std/containers/Emplaceable.h | 58 + test/std/containers/NotConstructible.h | 41 + .../associative/iterator_types.pass.cpp | 131 + ...PR28469_undefined_behavior_segfault.sh.cpp | 31 + .../map/allocator_mismatch.fail.cpp | 18 + .../associative/map/compare.pass.cpp | 52 + .../associative/map/incomplete_type.pass.cpp | 29 + .../associative/map/map.access/at.pass.cpp | 163 + .../associative/map/map.access/empty.fail.cpp | 28 + .../associative/map/map.access/empty.pass.cpp | 43 + .../map/map.access/index_key.pass.cpp | 144 + .../map/map.access/index_rv_key.pass.cpp | 81 + .../map/map.access/index_tuple.pass.cpp | 31 + .../map/map.access/iterator.pass.cpp | 229 + .../map/map.access/max_size.pass.cpp | 51 + .../associative/map/map.access/size.pass.cpp | 59 + .../associative/map/map.cons/alloc.pass.cpp | 50 + .../map.cons/assign_initializer_list.pass.cpp | 73 + .../associative/map/map.cons/compare.pass.cpp | 42 + .../map/map.cons/compare_alloc.pass.cpp | 54 + .../compare_copy_constructible.fail.cpp | 29 + .../associative/map/map.cons/copy.pass.cpp | 130 + .../map/map.cons/copy_alloc.pass.cpp | 129 + .../map/map.cons/copy_assign.pass.cpp | 341 + .../associative/map/map.cons/default.pass.cpp | 54 + .../map/map.cons/default_noexcept.pass.cpp | 58 + .../map/map.cons/default_recursive.pass.cpp | 29 + .../map/map.cons/dtor_noexcept.pass.cpp | 52 + .../map/map.cons/initializer_list.pass.cpp | 65 + .../initializer_list_compare.pass.cpp | 67 + .../initializer_list_compare_alloc.pass.cpp | 120 + .../map/map.cons/iter_iter.pass.cpp | 68 + .../map/map.cons/iter_iter_comp.pass.cpp | 73 + .../map.cons/iter_iter_comp_alloc.pass.cpp | 123 + .../associative/map/map.cons/move.pass.cpp | 118 + .../map/map.cons/move_alloc.pass.cpp | 271 + .../map/map.cons/move_assign.pass.cpp | 188 + .../map.cons/move_assign_noexcept.pass.cpp | 58 + .../map/map.cons/move_noexcept.pass.cpp | 56 + .../map/map.modifiers/clear.pass.cpp | 63 + .../map/map.modifiers/emplace.pass.cpp | 163 + .../map/map.modifiers/emplace_hint.pass.cpp | 158 + .../map/map.modifiers/erase_iter.pass.cpp | 259 + .../map.modifiers/erase_iter_iter.pass.cpp | 157 + .../map/map.modifiers/erase_key.pass.cpp | 275 + .../map.modifiers/extract_iterator.pass.cpp | 67 + .../map/map.modifiers/extract_key.pass.cpp | 76 + ...nd_emplace_allocator_requirements.pass.cpp | 31 + .../map/map.modifiers/insert_cv.pass.cpp | 72 + .../insert_initializer_list.pass.cpp | 69 + .../map/map.modifiers/insert_iter_cv.pass.cpp | 68 + .../map.modifiers/insert_iter_iter.pass.cpp | 77 + .../map/map.modifiers/insert_iter_rv.pass.cpp | 98 + .../map.modifiers/insert_node_type.pass.cpp | 85 + .../insert_node_type_hint.pass.cpp | 64 + .../map.modifiers/insert_or_assign.pass.cpp | 185 + .../map/map.modifiers/insert_rv.pass.cpp | 107 + .../map/map.modifiers/try.emplace.pass.cpp | 182 + .../associative/map/map.ops/count.pass.cpp | 194 + .../associative/map/map.ops/count0.pass.cpp | 39 + .../associative/map/map.ops/count1.fail.cpp | 40 + .../associative/map/map.ops/count2.fail.cpp | 40 + .../associative/map/map.ops/count3.fail.cpp | 40 + .../map/map.ops/count_transparent.pass.cpp | 50 + .../map/map.ops/equal_range.pass.cpp | 491 + .../map/map.ops/equal_range0.pass.cpp | 45 + .../map/map.ops/equal_range1.fail.cpp | 40 + .../map/map.ops/equal_range2.fail.cpp | 40 + .../map/map.ops/equal_range3.fail.cpp | 40 + .../map.ops/equal_range_transparent.pass.cpp | 60 + .../associative/map/map.ops/find.pass.cpp | 261 + .../associative/map/map.ops/find0.pass.cpp | 41 + .../associative/map/map.ops/find1.fail.cpp | 40 + .../associative/map/map.ops/find2.fail.cpp | 40 + .../associative/map/map.ops/find3.fail.cpp | 40 + .../map/map.ops/lower_bound.pass.cpp | 373 + .../map/map.ops/lower_bound0.pass.cpp | 41 + .../map/map.ops/lower_bound1.fail.cpp | 40 + .../map/map.ops/lower_bound2.fail.cpp | 40 + .../map/map.ops/lower_bound3.fail.cpp | 40 + .../map/map.ops/upper_bound.pass.cpp | 336 + .../map/map.ops/upper_bound0.pass.cpp | 41 + .../map/map.ops/upper_bound1.fail.cpp | 40 + .../map/map.ops/upper_bound2.fail.cpp | 40 + .../map/map.ops/upper_bound3.fail.cpp | 40 + .../map/map.special/member_swap.pass.cpp | 176 + .../map/map.special/non_member_swap.pass.cpp | 281 + .../map/map.special/swap_noexcept.pass.cpp | 142 + .../containers/associative/map/types.pass.cpp | 70 + .../multimap/allocator_mismatch.fail.cpp | 18 + .../associative/multimap/empty.fail.cpp | 28 + .../associative/multimap/empty.pass.cpp | 43 + .../multimap/incomplete_type.pass.cpp | 29 + .../associative/multimap/iterator.pass.cpp | 233 + .../associative/multimap/max_size.pass.cpp | 51 + .../multimap/multimap.cons/alloc.pass.cpp | 50 + .../assign_initializer_list.pass.cpp | 83 + .../multimap/multimap.cons/compare.pass.cpp | 42 + .../multimap.cons/compare_alloc.pass.cpp | 54 + .../compare_copy_constructible.fail.cpp | 29 + .../multimap/multimap.cons/copy.pass.cpp | 103 + .../multimap.cons/copy_alloc.pass.cpp | 102 + .../multimap.cons/copy_assign.pass.cpp | 125 + .../multimap/multimap.cons/default.pass.cpp | 54 + .../multimap.cons/default_noexcept.pass.cpp | 58 + .../multimap.cons/default_recursive.pass.cpp | 29 + .../multimap.cons/dtor_noexcept.pass.cpp | 52 + .../multimap.cons/initializer_list.pass.cpp | 81 + .../initializer_list_compare.pass.cpp | 89 + .../initializer_list_compare_alloc.pass.cpp | 159 + .../multimap/multimap.cons/iter_iter.pass.cpp | 113 + .../multimap.cons/iter_iter_comp.pass.cpp | 86 + .../iter_iter_comp_alloc.pass.cpp | 122 + .../multimap/multimap.cons/move.pass.cpp | 130 + .../multimap.cons/move_alloc.pass.cpp | 271 + .../multimap.cons/move_assign.pass.cpp | 188 + .../move_assign_noexcept.pass.cpp | 58 + .../multimap.cons/move_noexcept.pass.cpp | 56 + .../multimap.modifiers/clear.pass.cpp | 63 + .../multimap.modifiers/emplace.pass.cpp | 148 + .../multimap.modifiers/emplace_hint.pass.cpp | 158 + .../multimap.modifiers/erase_iter.pass.cpp | 301 + .../erase_iter_iter.pass.cpp | 157 + .../multimap.modifiers/erase_key.pass.cpp | 153 + .../extract_iterator.pass.cpp | 67 + .../multimap.modifiers/extract_key.pass.cpp | 76 + .../insert_allocator_requirements.pass.cpp | 28 + .../multimap.modifiers/insert_cv.pass.cpp | 69 + .../insert_initializer_list.pass.cpp | 89 + .../insert_iter_cv.pass.cpp | 67 + .../insert_iter_iter.pass.cpp | 101 + .../insert_iter_rv.pass.cpp | 99 + .../insert_node_type.pass.cpp | 78 + .../insert_node_type_hint.pass.cpp | 64 + .../multimap.modifiers/insert_rv.pass.cpp | 93 + .../multimap/multimap.ops/count.pass.cpp | 176 + .../multimap/multimap.ops/count0.pass.cpp | 39 + .../multimap/multimap.ops/count1.fail.cpp | 38 + .../multimap/multimap.ops/count2.fail.cpp | 38 + .../multimap/multimap.ops/count3.fail.cpp | 38 + .../multimap.ops/count_transparent.pass.cpp | 50 + .../multimap.ops/equal_range.pass.cpp | 287 + .../multimap.ops/equal_range0.pass.cpp | 45 + .../multimap.ops/equal_range1.fail.cpp | 38 + .../multimap.ops/equal_range2.fail.cpp | 40 + .../multimap.ops/equal_range3.fail.cpp | 40 + .../equal_range_transparent.pass.cpp | 60 + .../multimap/multimap.ops/find.pass.cpp | 223 + .../multimap/multimap.ops/find0.pass.cpp | 41 + .../multimap/multimap.ops/find1.fail.cpp | 40 + .../multimap/multimap.ops/find2.fail.cpp | 40 + .../multimap/multimap.ops/find3.fail.cpp | 40 + .../multimap.ops/lower_bound.pass.cpp | 237 + .../multimap.ops/lower_bound0.pass.cpp | 41 + .../multimap.ops/lower_bound1.fail.cpp | 40 + .../multimap.ops/lower_bound2.fail.cpp | 40 + .../multimap.ops/lower_bound3.fail.cpp | 40 + .../multimap.ops/upper_bound.pass.cpp | 236 + .../multimap.ops/upper_bound0.pass.cpp | 41 + .../multimap.ops/upper_bound1.fail.cpp | 40 + .../multimap.ops/upper_bound2.fail.cpp | 40 + .../multimap.ops/upper_bound3.fail.cpp | 40 + .../multimap.special/member_swap.pass.cpp | 176 + .../multimap.special/non_member_swap.pass.cpp | 281 + .../multimap.special/swap_noexcept.pass.cpp | 141 + .../associative/multimap/scary.pass.cpp | 25 + .../associative/multimap/size.pass.cpp | 59 + .../associative/multimap/types.pass.cpp | 70 + .../multiset/allocator_mismatch.fail.cpp | 18 + .../associative/multiset/clear.pass.cpp | 63 + .../associative/multiset/count.pass.cpp | 161 + .../multiset/count_transparent.pass.cpp | 51 + .../associative/multiset/emplace.pass.cpp | 81 + .../multiset/emplace_hint.pass.cpp | 81 + .../associative/multiset/empty.fail.cpp | 28 + .../associative/multiset/empty.pass.cpp | 43 + .../associative/multiset/equal_range.pass.cpp | 264 + .../multiset/equal_range_transparent.pass.cpp | 60 + .../associative/multiset/erase_iter.pass.cpp | 203 + .../multiset/erase_iter_iter.pass.cpp | 141 + .../associative/multiset/erase_key.pass.cpp | 129 + .../multiset/extract_iterator.pass.cpp | 60 + .../associative/multiset/extract_key.pass.cpp | 71 + .../associative/multiset/find.pass.cpp | 241 + .../multiset/incomplete_type.pass.cpp | 29 + .../insert_allocator_requirements.pass.cpp | 26 + .../associative/multiset/insert_cv.pass.cpp | 61 + .../multiset/insert_initializer_list.pass.cpp | 60 + .../multiset/insert_iter_cv.pass.cpp | 73 + .../multiset/insert_iter_iter.pass.cpp | 85 + .../multiset/insert_iter_rv.pass.cpp | 74 + .../multiset/insert_node_type.pass.cpp | 77 + .../multiset/insert_node_type_hint.pass.cpp | 59 + .../associative/multiset/insert_rv.pass.cpp | 74 + .../associative/multiset/iterator.pass.cpp | 217 + .../associative/multiset/lower_bound.pass.cpp | 224 + .../associative/multiset/max_size.pass.cpp | 50 + .../multiset/multiset.cons/alloc.pass.cpp | 29 + .../assign_initializer_list.pass.cpp | 55 + .../multiset/multiset.cons/compare.pass.cpp | 33 + .../multiset.cons/compare_alloc.pass.cpp | 31 + .../compare_copy_constructible.fail.cpp | 29 + .../multiset/multiset.cons/copy.pass.cpp | 119 + .../multiset.cons/copy_alloc.pass.cpp | 68 + .../multiset.cons/copy_assign.pass.cpp | 138 + .../multiset/multiset.cons/default.pass.cpp | 54 + .../multiset.cons/default_noexcept.pass.cpp | 57 + .../multiset.cons/dtor_noexcept.pass.cpp | 51 + .../multiset.cons/initializer_list.pass.cpp | 70 + .../initializer_list_compare.pass.cpp | 38 + .../initializer_list_compare_alloc.pass.cpp | 41 + .../multiset/multiset.cons/iter_iter.pass.cpp | 83 + .../multiset.cons/iter_iter_alloc.pass.cpp | 95 + .../multiset.cons/iter_iter_comp.pass.cpp | 53 + .../multiset/multiset.cons/move.pass.cpp | 117 + .../multiset.cons/move_alloc.pass.cpp | 187 + .../multiset.cons/move_assign.pass.cpp | 184 + .../move_assign_noexcept.pass.cpp | 57 + .../multiset.cons/move_noexcept.pass.cpp | 55 + .../multiset.special/member_swap.pass.cpp | 177 + .../multiset.special/non_member_swap.pass.cpp | 167 + .../multiset.special/swap_noexcept.pass.cpp | 140 + .../associative/multiset/scary.pass.cpp | 25 + .../associative/multiset/size.pass.cpp | 59 + .../associative/multiset/types.pass.cpp | 70 + .../associative/multiset/upper_bound.pass.cpp | 223 + .../set/allocator_mismatch.fail.cpp | 18 + .../containers/associative/set/clear.pass.cpp | 63 + .../containers/associative/set/count.pass.cpp | 171 + .../set/count_transparent.pass.cpp | 51 + .../associative/set/emplace.pass.cpp | 88 + .../associative/set/emplace_hint.pass.cpp | 81 + .../containers/associative/set/empty.fail.cpp | 28 + .../containers/associative/set/empty.pass.cpp | 43 + .../associative/set/equal_range.pass.cpp | 371 + .../set/equal_range_transparent.pass.cpp | 60 + .../associative/set/erase_iter.pass.cpp | 203 + .../associative/set/erase_iter_iter.pass.cpp | 141 + .../associative/set/erase_key.pass.cpp | 203 + .../associative/set/extract_iterator.pass.cpp | 60 + .../associative/set/extract_key.pass.cpp | 71 + .../containers/associative/set/find.pass.cpp | 241 + .../associative/set/incomplete_type.pass.cpp | 29 + ...nd_emplace_allocator_requirements.pass.cpp | 29 + .../associative/set/insert_cv.pass.cpp | 66 + .../set/insert_initializer_list.pass.cpp | 60 + .../associative/set/insert_iter_cv.pass.cpp | 73 + .../associative/set/insert_iter_iter.pass.cpp | 73 + .../associative/set/insert_iter_rv.pass.cpp | 74 + .../associative/set/insert_node_type.pass.cpp | 83 + .../set/insert_node_type_hint.pass.cpp | 61 + .../associative/set/insert_rv.pass.cpp | 82 + .../associative/set/iterator.pass.cpp | 213 + .../associative/set/lower_bound.pass.cpp | 338 + .../associative/set/max_size.pass.cpp | 50 + .../associative/set/set.cons/alloc.pass.cpp | 29 + .../set.cons/assign_initializer_list.pass.cpp | 55 + .../associative/set/set.cons/compare.pass.cpp | 33 + .../set/set.cons/compare_alloc.pass.cpp | 31 + .../compare_copy_constructible.fail.cpp | 29 + .../associative/set/set.cons/copy.pass.cpp | 95 + .../set/set.cons/copy_alloc.pass.cpp | 56 + .../set/set.cons/copy_assign.pass.cpp | 109 + .../associative/set/set.cons/default.pass.cpp | 54 + .../set/set.cons/default_noexcept.pass.cpp | 57 + .../set/set.cons/dtor_noexcept.pass.cpp | 51 + .../set/set.cons/initializer_list.pass.cpp | 53 + .../initializer_list_compare.pass.cpp | 38 + .../initializer_list_compare_alloc.pass.cpp | 62 + .../set/set.cons/iter_iter.pass.cpp | 71 + .../set/set.cons/iter_iter_alloc.pass.cpp | 87 + .../set/set.cons/iter_iter_comp.pass.cpp | 47 + .../associative/set/set.cons/move.pass.cpp | 105 + .../set/set.cons/move_alloc.pass.cpp | 188 + .../set/set.cons/move_assign.pass.cpp | 184 + .../set.cons/move_assign_noexcept.pass.cpp | 57 + .../set/set.cons/move_noexcept.pass.cpp | 55 + .../set/set.special/member_swap.pass.cpp | 177 + .../set/set.special/non_member_swap.pass.cpp | 167 + .../set/set.special/swap_noexcept.pass.cpp | 141 + .../containers/associative/set/size.pass.cpp | 59 + .../containers/associative/set/types.pass.cpp | 70 + .../associative/set/upper_bound.pass.cpp | 337 + .../container.adaptors/nothing_to_do.pass.cpp | 12 + .../priqueue.cons.alloc/ctor_alloc.pass.cpp | 49 + .../ctor_comp_alloc.pass.cpp | 49 + .../ctor_comp_cont_alloc.pass.cpp | 63 + .../ctor_comp_rcont_alloc.pass.cpp | 62 + .../ctor_copy_alloc.pass.cpp | 58 + .../ctor_move_alloc.pass.cpp | 66 + .../priqueue.cons/assign_copy.pass.cpp | 36 + .../priqueue.cons/assign_move.pass.cpp | 40 + .../priqueue.cons/ctor_comp.pass.cpp | 27 + .../ctor_comp_container.pass.cpp | 34 + .../ctor_comp_rcontainer.pass.cpp | 38 + .../priqueue.cons/ctor_copy.pass.cpp | 35 + .../priqueue.cons/ctor_default.pass.cpp | 27 + .../priqueue.cons/ctor_iter_iter.pass.cpp | 26 + .../ctor_iter_iter_comp.pass.cpp | 28 + .../ctor_iter_iter_comp_cont.pass.cpp | 27 + .../ctor_iter_iter_comp_rcont.pass.cpp | 32 + .../priqueue.cons/ctor_move.pass.cpp | 39 + .../priqueue.cons/deduct.fail.cpp | 58 + .../priqueue.cons/deduct.pass.cpp | 123 + .../priqueue.cons/default_noexcept.pass.cpp | 35 + .../priqueue.cons/dtor_noexcept.pass.cpp | 27 + .../move_assign_noexcept.pass.cpp | 31 + .../priqueue.cons/move_noexcept.pass.cpp | 31 + .../priqueue.members/emplace.pass.cpp | 32 + .../priqueue.members/empty.fail.cpp | 28 + .../priqueue.members/empty.pass.cpp | 27 + .../priqueue.members/pop.pass.cpp | 34 + .../priqueue.members/push.pass.cpp | 28 + .../priqueue.members/push_rvalue.pass.cpp | 32 + .../priqueue.members/size.pass.cpp | 27 + .../priqueue.members/swap.pass.cpp | 30 + .../priqueue.members/top.pass.cpp | 28 + .../priqueue.special/swap.pass.cpp | 32 + .../priqueue.special/swap_noexcept.pass.cpp | 32 + .../priority.queue/types.fail.cpp | 35 + .../priority.queue/types.pass.cpp | 68 + .../queue.cons.alloc/ctor_alloc.pass.cpp | 39 + .../ctor_container_alloc.pass.cpp | 59 + .../ctor_queue_alloc.pass.cpp | 52 + .../ctor_rcontainer_alloc.pass.cpp | 57 + .../ctor_rqueue_alloc.pass.cpp | 58 + .../queue/queue.cons/ctor_container.pass.cpp | 38 + .../queue/queue.cons/ctor_copy.pass.cpp | 32 + .../queue/queue.cons/ctor_default.pass.cpp | 28 + .../queue/queue.cons/ctor_move.pass.cpp | 39 + .../queue/queue.cons/ctor_rcontainer.pass.cpp | 37 + .../queue/queue.cons/deduct.fail.cpp | 46 + .../queue/queue.cons/deduct.pass.cpp | 91 + .../queue.cons/default_noexcept.pass.cpp | 33 + .../queue/queue.cons/dtor_noexcept.pass.cpp | 27 + .../queue.cons/move_assign_noexcept.pass.cpp | 30 + .../queue/queue.cons/move_noexcept.pass.cpp | 34 + .../queue/queue.defn/assign_copy.pass.cpp | 33 + .../queue/queue.defn/assign_move.pass.cpp | 40 + .../queue/queue.defn/back.pass.cpp | 26 + .../queue/queue.defn/back_const.pass.cpp | 27 + .../queue/queue.defn/emplace.pass.cpp | 65 + .../queue/queue.defn/empty.fail.cpp | 28 + .../queue/queue.defn/empty.pass.cpp | 25 + .../queue/queue.defn/front.pass.cpp | 26 + .../queue/queue.defn/front_const.pass.cpp | 27 + .../queue/queue.defn/pop.pass.cpp | 37 + .../queue/queue.defn/push.pass.cpp | 32 + .../queue/queue.defn/push_rv.pass.cpp | 36 + .../queue/queue.defn/size.pass.cpp | 23 + .../queue/queue.defn/swap.pass.cpp | 36 + .../queue/queue.defn/types.fail.cpp | 20 + .../queue/queue.defn/types.pass.cpp | 58 + .../queue/queue.ops/eq.pass.cpp | 40 + .../queue/queue.ops/lt.pass.cpp | 45 + .../queue/queue.special/swap.pass.cpp | 37 + .../queue.special/swap_noexcept.pass.cpp | 31 + .../stack.cons.alloc/ctor_alloc.pass.cpp | 39 + .../ctor_container_alloc.pass.cpp | 59 + .../stack.cons.alloc/ctor_copy_alloc.pass.cpp | 52 + .../ctor_rcontainer_alloc.pass.cpp | 57 + .../ctor_rqueue_alloc.pass.cpp | 58 + .../stack/stack.cons/ctor_container.pass.cpp | 38 + .../stack/stack.cons/ctor_copy.pass.cpp | 32 + .../stack/stack.cons/ctor_default.pass.cpp | 28 + .../stack/stack.cons/ctor_move.pass.cpp | 39 + .../stack/stack.cons/ctor_rcontainer.pass.cpp | 37 + .../stack/stack.cons/deduct.fail.cpp | 53 + .../stack/stack.cons/deduct.pass.cpp | 94 + .../stack.cons/default_noexcept.pass.cpp | 34 + .../stack/stack.cons/dtor_noexcept.pass.cpp | 27 + .../stack.cons/move_assign_noexcept.pass.cpp | 30 + .../stack/stack.cons/move_noexcept.pass.cpp | 33 + .../stack/stack.defn/assign_copy.pass.cpp | 33 + .../stack/stack.defn/assign_move.pass.cpp | 40 + .../stack/stack.defn/emplace.pass.cpp | 61 + .../stack/stack.defn/empty.fail.cpp | 28 + .../stack/stack.defn/empty.pass.cpp | 25 + .../stack/stack.defn/pop.pass.cpp | 34 + .../stack/stack.defn/push.pass.cpp | 29 + .../stack/stack.defn/push_rv.pass.cpp | 33 + .../stack/stack.defn/size.pass.cpp | 23 + .../stack/stack.defn/swap.pass.cpp | 36 + .../stack/stack.defn/top.pass.cpp | 26 + .../stack/stack.defn/top_const.pass.cpp | 27 + .../stack/stack.defn/types.fail.cpp | 35 + .../stack/stack.defn/types.pass.cpp | 59 + .../stack/stack.ops/eq.pass.cpp | 40 + .../stack/stack.ops/lt.pass.cpp | 45 + .../stack/stack.special/swap.pass.cpp | 37 + .../stack.special/swap_noexcept.pass.cpp | 31 + .../container.node/node_handle.pass.cpp | 145 + .../nothing_to_do.pass.cpp | 12 + .../associative.reqmts/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../allocator_move.pass.cpp | 106 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../sequence.reqmts/nothing_to_do.pass.cpp | 12 + .../unord.req/nothing_to_do.pass.cpp | 12 + .../unord.req.except/nothing_to_do.pass.cpp | 12 + .../containers.general/nothing_to_do.pass.cpp | 12 + ...map_allocator_requirement_test_templates.h | 743 + test/std/containers/nothing_to_do.pass.cpp | 12 + .../array/array.cons/deduct.fail.cpp | 37 + .../array/array.cons/deduct.pass.cpp | 65 + .../array/array.cons/default.pass.cpp | 48 + .../array/array.cons/implicit_copy.pass.cpp | 93 + .../array.cons/initializer_list.pass.cpp | 52 + .../sequences/array/array.data/data.pass.cpp | 67 + .../array/array.data/data_const.pass.cpp | 72 + .../sequences/array/array.fill/fill.fail.cpp | 29 + .../sequences/array/array.fill/fill.pass.cpp | 40 + .../sequences/array/array.size/size.pass.cpp | 59 + .../array/array.special/swap.pass.cpp | 85 + .../sequences/array/array.swap/swap.fail.cpp | 30 + .../sequences/array/array.swap/swap.pass.cpp | 93 + .../sequences/array/array.tuple/get.fail.cpp | 36 + .../sequences/array/array.tuple/get.pass.cpp | 59 + .../array/array.tuple/get_const.pass.cpp | 43 + .../array/array.tuple/get_const_rv.pass.cpp | 51 + .../array/array.tuple/get_rv.pass.cpp | 35 + .../array/array.tuple/tuple_element.fail.cpp | 35 + .../array/array.tuple/tuple_element.pass.cpp | 54 + .../array/array.tuple/tuple_size.pass.cpp | 42 + .../array.zero/tested_elsewhere.pass.cpp | 18 + .../containers/sequences/array/at.pass.cpp | 120 + .../containers/sequences/array/begin.pass.cpp | 44 + .../sequences/array/compare.fail.cpp | 71 + .../sequences/array/compare.pass.cpp | 63 + .../sequences/array/contiguous.pass.cpp | 31 + .../containers/sequences/array/empty.fail.cpp | 31 + .../containers/sequences/array/empty.pass.cpp | 36 + .../sequences/array/front_back.pass.cpp | 119 + .../sequences/array/indexing.pass.cpp | 108 + .../sequences/array/iterators.pass.cpp | 145 + .../sequences/array/max_size.pass.cpp | 36 + .../array/size_and_alignment.pass.cpp | 71 + .../containers/sequences/array/types.pass.cpp | 97 + .../deque/allocator_mismatch.fail.cpp | 18 + .../deque/deque.capacity/access.pass.cpp | 91 + .../deque/deque.capacity/empty.fail.cpp | 28 + .../deque/deque.capacity/empty.pass.cpp | 46 + .../deque/deque.capacity/max_size.pass.cpp | 47 + .../deque/deque.capacity/resize_size.pass.cpp | 89 + .../deque.capacity/resize_size_value.pass.cpp | 89 + .../deque.capacity/shrink_to_fit.pass.cpp | 77 + .../deque/deque.capacity/size.pass.cpp | 62 + .../sequences/deque/deque.cons/alloc.pass.cpp | 40 + .../assign_initializer_list.pass.cpp | 41 + .../deque.cons/assign_iter_iter.pass.cpp | 156 + .../deque.cons/assign_size_value.pass.cpp | 84 + .../sequences/deque/deque.cons/copy.pass.cpp | 61 + .../deque/deque.cons/copy_alloc.pass.cpp | 51 + .../deque/deque.cons/deduct.fail.cpp | 42 + .../deque/deque.cons/deduct.pass.cpp | 98 + .../deque/deque.cons/default.pass.cpp | 41 + .../deque.cons/default_noexcept.pass.cpp | 53 + .../deque/deque.cons/dtor_noexcept.pass.cpp | 51 + .../deque.cons/initializer_list.pass.cpp | 39 + .../initializer_list_alloc.pass.cpp | 42 + .../deque/deque.cons/iter_iter.pass.cpp | 112 + .../deque/deque.cons/iter_iter_alloc.pass.cpp | 103 + .../sequences/deque/deque.cons/move.pass.cpp | 72 + .../deque/deque.cons/move_alloc.pass.cpp | 85 + .../deque/deque.cons/move_assign.pass.cpp | 89 + .../deque.cons/move_assign_noexcept.pass.cpp | 55 + .../deque/deque.cons/move_noexcept.pass.cpp | 53 + .../deque/deque.cons/op_equal.pass.cpp | 63 + .../op_equal_initializer_list.pass.cpp | 41 + .../sequences/deque/deque.cons/size.pass.cpp | 117 + .../deque/deque.cons/size_value.pass.cpp | 52 + .../deque.cons/size_value_alloc.pass.cpp | 68 + .../deque/deque.modifiers/emplace.pass.cpp | 106 + .../deque.modifiers/emplace_back.pass.cpp | 105 + .../deque.modifiers/emplace_front.pass.cpp | 106 + .../erase_iter.invalidation.pass.cpp | 70 + .../deque/deque.modifiers/erase_iter.pass.cpp | 93 + .../erase_iter_iter.invalidation.pass.cpp | 78 + .../deque.modifiers/erase_iter_iter.pass.cpp | 99 + .../insert_iter_initializer_list.pass.cpp | 63 + .../deque.modifiers/insert_iter_iter.pass.cpp | 289 + .../deque.modifiers/insert_rvalue.pass.cpp | 111 + .../insert_size_value.pass.cpp | 158 + .../deque.modifiers/insert_value.pass.cpp | 138 + .../pop_back.invalidation.pass.cpp | 49 + .../deque/deque.modifiers/pop_back.pass.cpp | 85 + .../pop_front.invalidation.pass.cpp | 49 + .../deque/deque.modifiers/pop_front.pass.cpp | 85 + .../deque/deque.modifiers/push_back.pass.cpp | 73 + .../push_back_exception_safety.pass.cpp | 102 + .../deque.modifiers/push_back_rvalue.pass.cpp | 76 + .../deque/deque.modifiers/push_front.pass.cpp | 84 + .../push_front_exception_safety.pass.cpp | 102 + .../push_front_rvalue.pass.cpp | 87 + .../deque/deque.special/copy.pass.cpp | 88 + .../deque.special/copy_backward.pass.cpp | 87 + .../deque/deque.special/move.pass.cpp | 87 + .../deque.special/move_backward.pass.cpp | 87 + .../deque/deque.special/swap.pass.cpp | 110 + .../deque.special/swap_noexcept.pass.cpp | 89 + .../sequences/deque/iterators.pass.cpp | 80 + .../containers/sequences/deque/types.pass.cpp | 104 + .../forwardlist/allocator_mismatch.fail.cpp | 18 + .../sequences/forwardlist/empty.fail.cpp | 28 + .../sequences/forwardlist/empty.pass.cpp | 46 + .../forwardlist.access/front.pass.cpp | 61 + .../forwardlist.cons/alloc.fail.cpp | 30 + .../forwardlist.cons/alloc.pass.cpp | 49 + .../forwardlist.cons/assign_copy.pass.cpp | 146 + .../forwardlist.cons/assign_init.pass.cpp | 68 + .../forwardlist.cons/assign_move.pass.cpp | 197 + .../forwardlist.cons/assign_op_init.pass.cpp | 68 + .../forwardlist.cons/assign_range.pass.cpp | 78 + .../assign_size_value.pass.cpp | 68 + .../forwardlist.cons/copy.pass.cpp | 68 + .../forwardlist.cons/copy_alloc.pass.cpp | 67 + .../forwardlist.cons/deduct.fail.cpp | 42 + .../forwardlist.cons/deduct.pass.cpp | 103 + .../forwardlist.cons/default.pass.cpp | 41 + .../default_noexcept.pass.cpp | 53 + .../default_recursive.pass.cpp | 25 + .../forwardlist.cons/dtor_noexcept.pass.cpp | 51 + .../forwardlist.cons/init.pass.cpp | 41 + .../forwardlist.cons/init_alloc.pass.cpp | 46 + .../forwardlist.cons/move.pass.cpp | 71 + .../forwardlist.cons/move_alloc.pass.cpp | 71 + .../move_assign_noexcept.pass.cpp | 55 + .../forwardlist.cons/move_noexcept.pass.cpp | 53 + .../forwardlist.cons/range.pass.cpp | 48 + .../forwardlist.cons/range_alloc.pass.cpp | 54 + .../forwardlist.cons/size.pass.cpp | 74 + .../forwardlist.cons/size_value.pass.cpp | 45 + .../size_value_alloc.pass.cpp | 50 + .../forwardlist.iter/before_begin.pass.cpp | 104 + .../forwardlist.iter/iterators.pass.cpp | 146 + .../forwardlist.modifiers/clear.pass.cpp | 62 + .../emplace_after.pass.cpp | 87 + .../emplace_front.pass.cpp | 71 + .../erase_after_many.pass.cpp | 155 + .../erase_after_one.pass.cpp | 97 + .../insert_after_const.pass.cpp | 87 + .../insert_after_init.pass.cpp | 73 + .../insert_after_range.pass.cpp | 80 + .../insert_after_rv.pass.cpp | 88 + .../insert_after_size_value.pass.cpp | 73 + .../forwardlist.modifiers/pop_front.pass.cpp | 74 + .../push_front_const.pass.cpp | 47 + .../push_front_exception_safety.pass.cpp | 74 + .../push_front_rv.pass.cpp | 48 + .../resize_size.pass.cpp | 114 + .../resize_size_value.pass.cpp | 103 + .../forwardlist.ops/merge.pass.cpp | 48 + .../forwardlist.ops/merge_pred.pass.cpp | 49 + .../forwardlist.ops/remove.pass.cpp | 155 + .../forwardlist.ops/remove_if.pass.cpp | 156 + .../forwardlist.ops/reverse.pass.cpp | 42 + .../forwardlist/forwardlist.ops/sort.pass.cpp | 50 + .../forwardlist.ops/sort_pred.pass.cpp | 51 + .../splice_after_flist.pass.cpp | 76 + .../forwardlist.ops/splice_after_one.pass.cpp | 141 + .../splice_after_range.pass.cpp | 169 + .../forwardlist.ops/unique.pass.cpp | 120 + .../forwardlist.ops/unique_pred.pass.cpp | 125 + .../forwardlist.spec/equal.pass.cpp | 60 + .../forwardlist.spec/member_swap.pass.cpp | 259 + .../forwardlist.spec/non_member_swap.pass.cpp | 260 + .../forwardlist.spec/relational.pass.cpp | 65 + .../forwardlist.spec/swap_noexcept.pass.cpp | 88 + .../sequences/forwardlist/incomplete.pass.cpp | 53 + .../sequences/forwardlist/max_size.pass.cpp | 48 + .../sequences/forwardlist/types.pass.cpp | 76 + .../list/allocator_mismatch.fail.cpp | 18 + .../sequences/list/incomplete_type.pass.cpp | 27 + .../sequences/list/iterators.pass.cpp | 156 + .../list/list.capacity/empty.fail.cpp | 28 + .../list/list.capacity/empty.pass.cpp | 46 + .../list/list.capacity/max_size.pass.cpp | 47 + .../list/list.capacity/resize_size.pass.cpp | 81 + .../list.capacity/resize_size_value.pass.cpp | 53 + .../list/list.capacity/size.pass.cpp | 62 + .../list/list.cons/assign_copy.pass.cpp | 44 + .../assign_initializer_list.pass.cpp | 43 + .../list/list.cons/assign_move.pass.cpp | 80 + .../sequences/list/list.cons/copy.pass.cpp | 54 + .../list/list.cons/copy_alloc.pass.cpp | 42 + .../sequences/list/list.cons/deduct.fail.cpp | 42 + .../sequences/list/list.cons/deduct.pass.cpp | 103 + .../sequences/list/list.cons/default.pass.cpp | 68 + .../list/list.cons/default_noexcept.pass.cpp | 53 + .../list.cons/default_stack_alloc.pass.cpp | 48 + .../list/list.cons/dtor_noexcept.pass.cpp | 51 + .../list/list.cons/initializer_list.pass.cpp | 41 + .../list.cons/initializer_list_alloc.pass.cpp | 44 + .../list/list.cons/input_iterator.pass.cpp | 258 + .../sequences/list/list.cons/move.pass.cpp | 63 + .../list/list.cons/move_alloc.pass.cpp | 76 + .../list.cons/move_assign_noexcept.pass.cpp | 55 + .../list/list.cons/move_noexcept.pass.cpp | 53 + .../op_equal_initializer_list.pass.cpp | 42 + .../list/list.cons/size_type.pass.cpp | 104 + .../list/list.cons/size_value_alloc.pass.cpp | 80 + .../list/list.modifiers/clear.pass.cpp | 35 + .../list/list.modifiers/emplace.pass.cpp | 67 + .../list/list.modifiers/emplace_back.pass.cpp | 88 + .../list.modifiers/emplace_front.pass.cpp | 88 + .../list/list.modifiers/erase_iter.pass.cpp | 65 + .../list.modifiers/erase_iter_iter.pass.cpp | 84 + .../insert_iter_initializer_list.pass.cpp | 65 + .../insert_iter_iter_iter.pass.cpp | 91 + .../insert_iter_rvalue.pass.cpp | 44 + .../insert_iter_size_value.pass.cpp | 54 + .../list.modifiers/insert_iter_value.pass.cpp | 56 + .../list/list.modifiers/pop_back.pass.cpp | 44 + .../list/list.modifiers/pop_front.pass.cpp | 43 + .../list/list.modifiers/push_back.pass.cpp | 37 + .../push_back_exception_safety.pass.cpp | 74 + .../list.modifiers/push_back_rvalue.pass.cpp | 44 + .../list/list.modifiers/push_front.pass.cpp | 37 + .../push_front_exception_safety.pass.cpp | 74 + .../list.modifiers/push_front_rvalue.pass.cpp | 44 + .../sequences/list/list.ops/merge.pass.cpp | 41 + .../list/list.ops/merge_comp.pass.cpp | 42 + .../sequences/list/list.ops/remove.pass.cpp | 83 + .../list/list.ops/remove_if.pass.cpp | 64 + .../sequences/list/list.ops/reverse.pass.cpp | 37 + .../sequences/list/list.ops/sort.pass.cpp | 37 + .../list/list.ops/sort_comp.pass.cpp | 79 + .../list/list.ops/splice_pos_list.pass.cpp | 784 + .../list.ops/splice_pos_list_iter.pass.cpp | 338 + .../splice_pos_list_iter_iter.pass.cpp | 218 + .../sequences/list/list.ops/unique.pass.cpp | 37 + .../list/list.ops/unique_pred.pass.cpp | 42 + .../sequences/list/list.special/swap.pass.cpp | 140 + .../list/list.special/swap_noexcept.pass.cpp | 89 + .../containers/sequences/list/types.pass.cpp | 69 + .../sequences/nothing_to_do.pass.cpp | 12 + .../vector.bool/assign_copy.pass.cpp | 44 + .../assign_initializer_list.pass.cpp | 41 + .../vector.bool/assign_move.pass.cpp | 79 + .../sequences/vector.bool/capacity.pass.cpp | 44 + .../vector.bool/construct_default.pass.cpp | 74 + .../vector.bool/construct_iter_iter.pass.cpp | 50 + .../construct_iter_iter_alloc.pass.cpp | 57 + .../vector.bool/construct_size.pass.cpp | 67 + .../vector.bool/construct_size_value.pass.cpp | 38 + .../construct_size_value_alloc.pass.cpp | 40 + .../sequences/vector.bool/copy.pass.cpp | 65 + .../sequences/vector.bool/copy_alloc.pass.cpp | 64 + .../vector.bool/default_noexcept.pass.cpp | 52 + .../vector.bool/dtor_noexcept.pass.cpp | 50 + .../sequences/vector.bool/emplace.pass.cpp | 67 + .../vector.bool/emplace_back.pass.cpp | 91 + .../sequences/vector.bool/empty.fail.cpp | 28 + .../sequences/vector.bool/empty.pass.cpp | 46 + .../vector.bool/enabled_hash.pass.cpp | 28 + .../sequences/vector.bool/erase_iter.pass.cpp | 65 + .../vector.bool/erase_iter_iter.pass.cpp | 85 + .../sequences/vector.bool/find.pass.cpp | 42 + .../vector.bool/initializer_list.pass.cpp | 39 + .../initializer_list_alloc.pass.cpp | 42 + .../insert_iter_initializer_list.pass.cpp | 63 + .../insert_iter_iter_iter.pass.cpp | 129 + .../insert_iter_size_value.pass.cpp | 82 + .../vector.bool/insert_iter_value.pass.cpp | 78 + .../sequences/vector.bool/iterators.pass.cpp | 124 + .../sequences/vector.bool/move.pass.cpp | 93 + .../sequences/vector.bool/move_alloc.pass.cpp | 75 + .../vector.bool/move_assign_noexcept.pass.cpp | 101 + .../vector.bool/move_noexcept.pass.cpp | 60 + .../op_equal_initializer_list.pass.cpp | 41 + .../sequences/vector.bool/push_back.pass.cpp | 49 + .../vector.bool/reference.swap.pass.cpp | 39 + .../sequences/vector.bool/reserve.pass.cpp | 54 + .../vector.bool/resize_size.pass.cpp | 50 + .../vector.bool/resize_size_value.pass.cpp | 52 + .../vector.bool/shrink_to_fit.pass.cpp | 38 + .../sequences/vector.bool/size.pass.cpp | 62 + .../sequences/vector.bool/swap.pass.cpp | 98 + .../vector.bool/swap_noexcept.pass.cpp | 93 + .../sequences/vector.bool/types.pass.cpp | 80 + .../vector.bool/vector_bool.pass.cpp | 54 + .../vector/allocator_mismatch.fail.cpp | 18 + .../sequences/vector/contiguous.pass.cpp | 52 + .../sequences/vector/iterators.pass.cpp | 170 + .../sequences/vector/types.pass.cpp | 108 + .../vector/vector.capacity/capacity.pass.cpp | 48 + .../vector/vector.capacity/empty.fail.cpp | 28 + .../vector/vector.capacity/empty.pass.cpp | 46 + .../vector/vector.capacity/max_size.pass.cpp | 48 + .../vector/vector.capacity/reserve.pass.cpp | 70 + .../vector.capacity/resize_size.pass.cpp | 84 + .../resize_size_value.pass.cpp | 77 + .../vector.capacity/shrink_to_fit.pass.cpp | 62 + .../vector/vector.capacity/size.pass.cpp | 62 + .../vector/vector.capacity/swap.pass.cpp | 50 + .../vector/vector.cons/assign_copy.pass.cpp | 44 + .../assign_initializer_list.pass.cpp | 52 + .../vector.cons/assign_iter_iter.pass.cpp | 76 + .../vector/vector.cons/assign_move.pass.cpp | 99 + .../vector.cons/assign_size_value.pass.cpp | 54 + .../vector.cons/construct_default.pass.cpp | 102 + .../vector.cons/construct_iter_iter.pass.cpp | 156 + .../construct_iter_iter_alloc.pass.cpp | 172 + .../vector.cons/construct_size.pass.cpp | 75 + .../vector.cons/construct_size_value.pass.cpp | 42 + .../construct_size_value_alloc.pass.cpp | 41 + .../vector/vector.cons/copy.pass.cpp | 78 + .../vector/vector.cons/copy_alloc.pass.cpp | 66 + .../vector/vector.cons/deduct.fail.cpp | 40 + .../vector/vector.cons/deduct.pass.cpp | 116 + .../vector.cons/default.recursive.pass.cpp | 23 + .../vector.cons/default_noexcept.pass.cpp | 51 + .../vector/vector.cons/dtor_noexcept.pass.cpp | 51 + .../vector.cons/initializer_list.pass.cpp | 41 + .../initializer_list_alloc.pass.cpp | 45 + .../vector/vector.cons/move.pass.cpp | 134 + .../vector/vector.cons/move_alloc.pass.cpp | 97 + .../vector.cons/move_assign_noexcept.pass.cpp | 95 + .../vector/vector.cons/move_noexcept.pass.cpp | 55 + .../op_equal_initializer_list.pass.cpp | 44 + .../vector/vector.data/data.pass.cpp | 63 + .../vector/vector.data/data_const.pass.cpp | 63 + .../vector/vector.modifiers/clear.pass.cpp | 40 + .../vector/vector.modifiers/emplace.pass.cpp | 136 + .../vector.modifiers/emplace_back.pass.cpp | 148 + .../vector.modifiers/emplace_extra.pass.cpp | 60 + .../vector.modifiers/erase_iter.pass.cpp | 103 + .../vector.modifiers/erase_iter_iter.pass.cpp | 156 + .../insert_iter_initializer_list.pass.cpp | 66 + .../insert_iter_iter_iter.pass.cpp | 167 + .../insert_iter_rvalue.pass.cpp | 66 + .../insert_iter_size_value.pass.cpp | 115 + .../insert_iter_value.pass.cpp | 97 + .../vector/vector.modifiers/pop_back.pass.cpp | 41 + .../vector.modifiers/push_back.pass.cpp | 112 + .../push_back_exception_safety.pass.cpp | 89 + .../push_back_rvalue.pass.cpp | 113 + .../vector/vector.special/swap.pass.cpp | 182 + .../vector.special/swap_noexcept.pass.cpp | 89 + ...set_allocator_requirement_test_templates.h | 354 + test/std/containers/test_compare.h | 45 + test/std/containers/test_hash.h | 32 + .../unord/iterator_difference_type.pass.cpp | 154 + .../unord.map/allocator_mismatch.fail.cpp | 18 + .../unord/unord.map/bucket.pass.cpp | 78 + .../unord/unord.map/bucket_count.pass.cpp | 75 + .../unord/unord.map/bucket_size.pass.cpp | 82 + .../unord/unord.map/compare.pass.cpp | 47 + .../containers/unord/unord.map/count.pass.cpp | 65 + .../containers/unord/unord.map/empty.fail.cpp | 28 + .../containers/unord/unord.map/empty.pass.cpp | 46 + .../containers/unord/unord.map/eq.pass.cpp | 163 + .../unord.map/equal_range_const.pass.cpp | 75 + .../unord.map/equal_range_non_const.pass.cpp | 75 + .../unord/unord.map/find_const.pass.cpp | 71 + .../unord/unord.map/find_non_const.pass.cpp | 71 + .../unord/unord.map/incomplete_type.pass.cpp | 37 + .../unord/unord.map/iterators.pass.cpp | 130 + .../unord/unord.map/load_factor.pass.cpp | 77 + .../unord/unord.map/local_iterators.pass.cpp | 421 + .../unord/unord.map/max_bucket_count.pass.cpp | 40 + .../unord/unord.map/max_load_factor.pass.cpp | 69 + .../unord/unord.map/max_size.pass.cpp | 53 + .../unord/unord.map/rehash.pass.cpp | 104 + .../unord/unord.map/reserve.pass.cpp | 108 + .../containers/unord/unord.map/size.pass.cpp | 62 + .../unord/unord.map/swap_member.pass.cpp | 571 + .../containers/unord/unord.map/types.pass.cpp | 72 + .../unord.map.cnstr/allocator.pass.cpp | 130 + .../unord.map.cnstr/assign_copy.pass.cpp | 187 + .../unord.map.cnstr/assign_init.pass.cpp | 96 + .../unord.map.cnstr/assign_move.pass.cpp | 217 + .../compare_copy_constructible.fail.cpp | 32 + .../unord.map/unord.map.cnstr/copy.pass.cpp | 152 + .../unord.map.cnstr/copy_alloc.pass.cpp | 152 + .../unord.map.cnstr/default.pass.cpp | 112 + .../unord.map.cnstr/default_noexcept.pass.cpp | 76 + .../unord.map.cnstr/dtor_noexcept.pass.cpp | 69 + .../hash_copy_constructible.fail.cpp | 32 + .../unord.map/unord.map.cnstr/init.pass.cpp | 162 + .../unord.map.cnstr/init_size.pass.cpp | 101 + .../unord.map.cnstr/init_size_hash.pass.cpp | 103 + .../init_size_hash_equal.pass.cpp | 106 + .../init_size_hash_equal_allocator.pass.cpp | 144 + .../unord.map/unord.map.cnstr/move.pass.cpp | 180 + .../unord.map.cnstr/move_alloc.pass.cpp | 199 + .../move_assign_noexcept.pass.cpp | 75 + .../unord.map.cnstr/move_noexcept.pass.cpp | 72 + .../unord.map/unord.map.cnstr/range.pass.cpp | 172 + .../unord.map.cnstr/range_size.pass.cpp | 108 + .../unord.map.cnstr/range_size_hash.pass.cpp | 111 + .../range_size_hash_equal.pass.cpp | 113 + .../range_size_hash_equal_allocator.pass.cpp | 154 + .../unord.map/unord.map.cnstr/size.fail.cpp | 70 + .../unord.map/unord.map.cnstr/size.pass.cpp | 70 + .../unord.map.cnstr/size_hash.pass.cpp | 74 + .../unord.map.cnstr/size_hash_equal.pass.cpp | 76 + .../size_hash_equal_allocator.pass.cpp | 100 + .../unord.map/unord.map.elem/at.pass.cpp | 143 + .../unord.map/unord.map.elem/index.pass.cpp | 164 + .../unord.map.elem/index_tuple.pass.cpp | 36 + .../unord.map.modifiers/clear.pass.cpp | 61 + .../unord.map.modifiers/emplace.pass.cpp | 78 + .../unord.map.modifiers/emplace_hint.pass.cpp | 75 + .../erase_const_iter.pass.cpp | 93 + .../erase_iter_db1.pass.cpp | 39 + .../erase_iter_db2.pass.cpp | 42 + .../erase_iter_iter_db1.pass.cpp | 41 + .../erase_iter_iter_db2.pass.cpp | 41 + .../erase_iter_iter_db3.pass.cpp | 41 + .../erase_iter_iter_db4.pass.cpp | 40 + .../unord.map.modifiers/erase_key.pass.cpp | 178 + .../unord.map.modifiers/erase_range.pass.cpp | 99 + .../extract_iterator.pass.cpp | 67 + .../unord.map.modifiers/extract_key.pass.cpp | 76 + ...nd_emplace_allocator_requirements.pass.cpp | 31 + .../insert_const_lvalue.pass.cpp | 82 + .../insert_hint_const_lvalue.pass.cpp | 84 + .../insert_hint_rvalue.pass.cpp | 177 + .../unord.map.modifiers/insert_init.pass.cpp | 70 + .../insert_node_type.pass.cpp | 84 + .../insert_node_type_hint.pass.cpp | 64 + .../insert_or_assign.pass.cpp | 192 + .../unord.map.modifiers/insert_range.pass.cpp | 71 + .../insert_rvalue.pass.cpp | 176 + .../unord.map.modifiers/try.emplace.pass.cpp | 189 + .../unord.map.swap/db_swap_1.pass.cpp | 44 + .../unord.map.swap/swap_noexcept.pass.cpp | 192 + .../unord.map.swap/swap_non_member.pass.cpp | 571 + .../allocator_mismatch.fail.cpp | 18 + .../unord/unord.multimap/bucket.pass.cpp | 78 + .../unord.multimap/bucket_count.pass.cpp | 48 + .../unord/unord.multimap/bucket_size.pass.cpp | 86 + .../unord/unord.multimap/count.pass.cpp | 71 + .../unord.multimap/db_iterators_7.pass.cpp | 60 + .../unord.multimap/db_iterators_8.pass.cpp | 56 + .../db_local_iterators_7.pass.cpp | 57 + .../db_local_iterators_8.pass.cpp | 54 + .../unord/unord.multimap/empty.fail.cpp | 28 + .../unord/unord.multimap/empty.pass.cpp | 46 + .../unord/unord.multimap/eq.pass.cpp | 181 + .../unord.multimap/equal_range_const.pass.cpp | 97 + .../equal_range_non_const.pass.cpp | 97 + .../unord/unord.multimap/find_const.pass.cpp | 71 + .../unord.multimap/find_non_const.pass.cpp | 71 + .../unord/unord.multimap/incomplete.pass.cpp | 37 + .../unord/unord.multimap/iterators.fail.cpp | 71 + .../unord/unord.multimap/iterators.pass.cpp | 136 + .../unord/unord.multimap/load_factor.pass.cpp | 76 + .../unord.multimap/local_iterators.fail.cpp | 288 + .../unord.multimap/local_iterators.pass.cpp | 549 + .../unord.multimap/max_bucket_count.pass.cpp | 39 + .../unord.multimap/max_load_factor.pass.cpp | 67 + .../unord/unord.multimap/max_size.pass.cpp | 55 + .../unord/unord.multimap/rehash.pass.cpp | 134 + .../unord/unord.multimap/reserve.pass.cpp | 110 + .../unord/unord.multimap/scary.pass.cpp | 25 + .../unord/unord.multimap/size.pass.cpp | 62 + .../unord/unord.multimap/swap_member.pass.cpp | 584 + .../unord/unord.multimap/types.pass.cpp | 72 + .../unord.multimap.cnstr/allocator.pass.cpp | 130 + .../unord.multimap.cnstr/assign_copy.pass.cpp | 229 + .../unord.multimap.cnstr/assign_init.pass.cpp | 145 + .../unord.multimap.cnstr/assign_move.pass.cpp | 294 + .../compare_copy_constructible.fail.cpp | 32 + .../unord.multimap.cnstr/copy.pass.cpp | 194 + .../unord.multimap.cnstr/copy_alloc.pass.cpp | 194 + .../unord.multimap.cnstr/default.pass.cpp | 112 + .../default_noexcept.pass.cpp | 75 + .../dtor_noexcept.pass.cpp | 68 + .../hash_copy_constructible.fail.cpp | 32 + .../unord.multimap.cnstr/init.pass.cpp | 254 + .../unord.multimap.cnstr/init_size.pass.cpp | 145 + .../init_size_hash.pass.cpp | 147 + .../init_size_hash_equal.pass.cpp | 150 + .../init_size_hash_equal_allocator.pass.cpp | 211 + .../unord.multimap.cnstr/move.pass.cpp | 225 + .../unord.multimap.cnstr/move_alloc.pass.cpp | 293 + .../move_assign_noexcept.pass.cpp | 74 + .../move_noexcept.pass.cpp | 71 + .../unord.multimap.cnstr/range.pass.cpp | 265 + .../unord.multimap.cnstr/range_size.pass.cpp | 152 + .../range_size_hash.pass.cpp | 155 + .../range_size_hash_equal.pass.cpp | 157 + .../range_size_hash_equal_allocator.pass.cpp | 221 + .../unord.multimap.cnstr/size.fail.cpp | 70 + .../unord.multimap.cnstr/size.pass.cpp | 70 + .../unord.multimap.cnstr/size_hash.pass.cpp | 74 + .../size_hash_equal.pass.cpp | 76 + .../size_hash_equal_allocator.pass.cpp | 100 + .../unord.multimap.modifiers/clear.pass.cpp | 61 + .../unord.multimap.modifiers/emplace.pass.cpp | 72 + .../emplace_hint.pass.cpp | 92 + .../erase_const_iter.pass.cpp | 147 + .../erase_iter_db1.pass.cpp | 39 + .../erase_iter_db2.pass.cpp | 42 + .../erase_iter_iter_db1.pass.cpp | 41 + .../erase_iter_iter_db2.pass.cpp | 41 + .../erase_iter_iter_db3.pass.cpp | 41 + .../erase_iter_iter_db4.pass.cpp | 40 + .../erase_key.pass.cpp | 389 + .../erase_range.pass.cpp | 180 + .../extract_iterator.pass.cpp | 67 + .../extract_key.pass.cpp | 77 + .../insert_allocator_requirements.pass.cpp | 27 + .../insert_const_lvalue.pass.cpp | 65 + .../insert_hint_const_lvalue.pass.cpp | 83 + .../insert_hint_rvalue.pass.cpp | 177 + .../insert_init.pass.cpp | 121 + .../insert_node_type.pass.cpp | 77 + .../insert_node_type_hint.pass.cpp | 63 + .../insert_range.pass.cpp | 122 + .../insert_rvalue.pass.cpp | 156 + .../unord.multimap.swap/db_swap_1.pass.cpp | 44 + .../swap_noexcept.pass.cpp | 191 + .../swap_non_member.pass.cpp | 583 + .../allocator_mismatch.fail.cpp | 18 + .../unord/unord.multiset/bucket.pass.cpp | 77 + .../unord.multiset/bucket_count.pass.cpp | 74 + .../unord/unord.multiset/bucket_size.pass.cpp | 85 + .../unord/unord.multiset/clear.pass.cpp | 60 + .../unord/unord.multiset/count.pass.cpp | 70 + .../unord.multiset/db_iterators_7.pass.cpp | 58 + .../unord.multiset/db_iterators_8.pass.cpp | 54 + .../db_local_iterators_7.pass.cpp | 57 + .../db_local_iterators_8.pass.cpp | 54 + .../unord/unord.multiset/emplace.pass.cpp | 62 + .../unord.multiset/emplace_hint.pass.cpp | 65 + .../unord/unord.multiset/empty.fail.cpp | 28 + .../unord/unord.multiset/empty.pass.cpp | 46 + .../unord/unord.multiset/eq.pass.cpp | 180 + .../unord.multiset/equal_range_const.pass.cpp | 90 + .../equal_range_non_const.pass.cpp | 90 + .../unord.multiset/erase_const_iter.pass.cpp | 100 + .../unord.multiset/erase_iter_db1.pass.cpp | 38 + .../unord.multiset/erase_iter_db2.pass.cpp | 41 + .../erase_iter_iter_db1.pass.cpp | 40 + .../erase_iter_iter_db2.pass.cpp | 40 + .../erase_iter_iter_db3.pass.cpp | 40 + .../erase_iter_iter_db4.pass.cpp | 39 + .../unord/unord.multiset/erase_key.pass.cpp | 176 + .../unord/unord.multiset/erase_range.pass.cpp | 94 + .../unord.multiset/extract_iterator.pass.cpp | 60 + .../unord/unord.multiset/extract_key.pass.cpp | 71 + .../unord/unord.multiset/find_const.pass.cpp | 68 + .../unord.multiset/find_non_const.pass.cpp | 68 + .../unord/unord.multiset/incomplete.pass.cpp | 38 + .../insert_allocator_requirements.pass.cpp | 25 + .../insert_const_lvalue.pass.cpp | 60 + .../insert_hint_const_lvalue.pass.cpp | 78 + .../insert_hint_rvalue.pass.cpp | 119 + .../unord/unord.multiset/insert_init.pass.cpp | 69 + .../unord.multiset/insert_node_type.pass.cpp | 76 + .../insert_node_type_hint.pass.cpp | 59 + .../unord.multiset/insert_range.pass.cpp | 70 + .../unord.multiset/insert_rvalue.pass.cpp | 115 + .../unord/unord.multiset/iterators.fail.cpp | 69 + .../unord/unord.multiset/iterators.pass.cpp | 129 + .../unord/unord.multiset/load_factor.pass.cpp | 75 + .../unord.multiset/local_iterators.fail.cpp | 263 + .../unord.multiset/local_iterators.pass.cpp | 500 + .../unord.multiset/max_bucket_count.pass.cpp | 38 + .../unord.multiset/max_load_factor.pass.cpp | 66 + .../unord/unord.multiset/max_size.pass.cpp | 54 + .../unord/unord.multiset/rehash.pass.cpp | 103 + .../unord/unord.multiset/reserve.pass.cpp | 107 + .../unord/unord.multiset/scary.pass.cpp | 25 + .../unord/unord.multiset/size.pass.cpp | 62 + .../unord/unord.multiset/swap_member.pass.cpp | 570 + .../unord/unord.multiset/types.pass.cpp | 69 + .../unord.multiset.cnstr/allocator.pass.cpp | 110 + .../unord.multiset.cnstr/assign_copy.pass.cpp | 211 + .../unord.multiset.cnstr/assign_init.pass.cpp | 96 + .../unord.multiset.cnstr/assign_move.pass.cpp | 266 + .../compare_copy_constructible.fail.cpp | 29 + .../unord.multiset.cnstr/copy.pass.cpp | 172 + .../unord.multiset.cnstr/copy_alloc.pass.cpp | 126 + .../unord.multiset.cnstr/default.pass.cpp | 108 + .../default_noexcept.pass.cpp | 75 + .../dtor_noexcept.pass.cpp | 68 + .../hash_copy_constructible.fail.cpp | 29 + .../unord.multiset.cnstr/init.pass.cpp | 163 + .../unord.multiset.cnstr/init_size.pass.cpp | 98 + .../init_size_hash.pass.cpp | 101 + .../init_size_hash_equal.pass.cpp | 103 + .../init_size_hash_equal_allocator.pass.cpp | 105 + .../unord.multiset.cnstr/move.pass.cpp | 175 + .../unord.multiset.cnstr/move_alloc.pass.cpp | 206 + .../move_assign_noexcept.pass.cpp | 74 + .../move_noexcept.pass.cpp | 71 + .../unord.multiset.cnstr/range.pass.cpp | 169 + .../unord.multiset.cnstr/range_size.pass.cpp | 104 + .../range_size_hash.pass.cpp | 107 + .../range_size_hash_equal.pass.cpp | 109 + .../range_size_hash_equal_allocator.pass.cpp | 112 + .../unord.multiset.cnstr/size.fail.cpp | 66 + .../unord.multiset.cnstr/size.pass.cpp | 66 + .../unord.multiset.cnstr/size_hash.pass.cpp | 70 + .../size_hash_equal.pass.cpp | 72 + .../size_hash_equal_allocator.pass.cpp | 74 + .../unord.multiset.swap/db_swap_1.pass.cpp | 43 + .../swap_noexcept.pass.cpp | 190 + .../swap_non_member.pass.cpp | 570 + .../unord.set/allocator_mismatch.fail.cpp | 18 + .../unord/unord.set/bucket.pass.cpp | 76 + .../unord/unord.set/bucket_count.pass.cpp | 72 + .../unord/unord.set/bucket_size.pass.cpp | 80 + .../containers/unord/unord.set/clear.pass.cpp | 59 + .../containers/unord/unord.set/count.pass.cpp | 69 + .../unord/unord.set/db_iterators_7.pass.cpp | 58 + .../unord/unord.set/db_iterators_8.pass.cpp | 54 + .../unord.set/db_local_iterators_7.pass.cpp | 57 + .../unord.set/db_local_iterators_8.pass.cpp | 54 + .../unord/unord.set/emplace.pass.cpp | 68 + .../unord/unord.set/emplace_hint.pass.cpp | 65 + .../containers/unord/unord.set/empty.fail.cpp | 28 + .../containers/unord/unord.set/empty.pass.cpp | 46 + .../containers/unord/unord.set/eq.pass.cpp | 159 + .../unord.set/equal_range_const.pass.cpp | 81 + .../unord.set/equal_range_non_const.pass.cpp | 81 + .../unord/unord.set/erase_const_iter.pass.cpp | 98 + .../unord/unord.set/erase_iter_db1.pass.cpp | 38 + .../unord/unord.set/erase_iter_db2.pass.cpp | 41 + .../unord.set/erase_iter_iter_db1.pass.cpp | 40 + .../unord.set/erase_iter_iter_db2.pass.cpp | 40 + .../unord.set/erase_iter_iter_db3.pass.cpp | 40 + .../unord.set/erase_iter_iter_db4.pass.cpp | 39 + .../unord/unord.set/erase_key.pass.cpp | 175 + .../unord/unord.set/erase_range.pass.cpp | 93 + .../unord/unord.set/extract_iterator.pass.cpp | 60 + .../unord/unord.set/extract_key.pass.cpp | 71 + .../unord/unord.set/find_const.pass.cpp | 67 + .../unord/unord.set/find_non_const.pass.cpp | 67 + .../unord/unord.set/incomplete.pass.cpp | 38 + ...nd_emplace_allocator_requirements.pass.cpp | 29 + .../unord.set/insert_const_lvalue.pass.cpp | 64 + .../insert_hint_const_lvalue.pass.cpp | 78 + .../unord.set/insert_hint_rvalue.pass.cpp | 119 + .../unord/unord.set/insert_init.pass.cpp | 69 + .../unord/unord.set/insert_node_type.pass.cpp | 83 + .../unord.set/insert_node_type_hint.pass.cpp | 61 + .../unord/unord.set/insert_range.pass.cpp | 70 + .../unord/unord.set/insert_rvalue.pass.cpp | 131 + .../unord/unord.set/iterators.fail.cpp | 67 + .../unord/unord.set/iterators.pass.cpp | 129 + .../unord/unord.set/load_factor.pass.cpp | 75 + .../unord/unord.set/local_iterators.fail.cpp | 261 + .../unord/unord.set/local_iterators.pass.cpp | 388 + .../unord/unord.set/max_bucket_count.pass.cpp | 38 + .../unord/unord.set/max_load_factor.pass.cpp | 66 + .../unord/unord.set/max_size.pass.cpp | 50 + .../unord/unord.set/rehash.pass.cpp | 103 + .../unord/unord.set/reserve.pass.cpp | 107 + .../containers/unord/unord.set/size.pass.cpp | 62 + .../unord/unord.set/swap_member.pass.cpp | 570 + .../containers/unord/unord.set/types.pass.cpp | 69 + .../unord.set.cnstr/allocator.pass.cpp | 110 + .../unord.set.cnstr/assign_copy.pass.cpp | 186 + .../unord.set.cnstr/assign_init.pass.cpp | 96 + .../unord.set.cnstr/assign_move.pass.cpp | 213 + .../compare_copy_constructible.fail.cpp | 29 + .../unord.set/unord.set.cnstr/copy.pass.cpp | 148 + .../unord.set.cnstr/copy_alloc.pass.cpp | 110 + .../unord.set.cnstr/default.pass.cpp | 108 + .../unord.set.cnstr/default_noexcept.pass.cpp | 75 + .../unord.set.cnstr/dtor_noexcept.pass.cpp | 68 + .../hash_copy_constructible.fail.cpp | 29 + .../unord.set/unord.set.cnstr/init.pass.cpp | 163 + .../unord.set.cnstr/init_size.pass.cpp | 98 + .../unord.set.cnstr/init_size_hash.pass.cpp | 101 + .../init_size_hash_equal.pass.cpp | 103 + .../init_size_hash_equal_allocator.pass.cpp | 105 + .../unord.set/unord.set.cnstr/move.pass.cpp | 175 + .../unord.set.cnstr/move_alloc.pass.cpp | 156 + .../move_assign_noexcept.pass.cpp | 74 + .../unord.set.cnstr/move_noexcept.pass.cpp | 71 + .../unord.set/unord.set.cnstr/range.pass.cpp | 170 + .../unord.set.cnstr/range_size.pass.cpp | 104 + .../unord.set.cnstr/range_size_hash.pass.cpp | 107 + .../range_size_hash_equal.pass.cpp | 109 + .../range_size_hash_equal_allocator.pass.cpp | 112 + .../unord.set/unord.set.cnstr/size.fail.cpp | 46 + .../unord.set/unord.set.cnstr/size.pass.cpp | 66 + .../unord.set.cnstr/size_hash.pass.cpp | 70 + .../unord.set.cnstr/size_hash_equal.pass.cpp | 72 + .../size_hash_equal_allocator.pass.cpp | 74 + .../unord.set.swap/db_swap_1.pass.cpp | 43 + .../unord.set.swap/swap_noexcept.pass.cpp | 190 + .../unord.set.swap/swap_non_member.pass.cpp | 570 + .../views/span.comparison/op.eq.pass.cpp | 168 + .../views/span.comparison/op.ge.pass.cpp | 153 + .../views/span.comparison/op.gt.pass.cpp | 154 + .../views/span.comparison/op.le.pass.cpp | 153 + .../views/span.comparison/op.lt.pass.cpp | 154 + .../views/span.comparison/op.ne.pass.cpp | 168 + .../containers/views/span.cons/array.fail.cpp | 72 + .../containers/views/span.cons/array.pass.cpp | 123 + .../views/span.cons/assign.pass.cpp | 293 + .../views/span.cons/container.fail.cpp | 117 + .../views/span.cons/container.pass.cpp | 118 + .../containers/views/span.cons/copy.pass.cpp | 71 + .../views/span.cons/deduct.pass.cpp | 87 + .../views/span.cons/default.fail.cpp | 32 + .../views/span.cons/default.pass.cpp | 82 + .../views/span.cons/ptr_len.fail.cpp | 63 + .../views/span.cons/ptr_len.pass.cpp | 113 + .../views/span.cons/ptr_ptr.fail.cpp | 63 + .../views/span.cons/ptr_ptr.pass.cpp | 113 + .../containers/views/span.cons/span.fail.cpp | 104 + .../containers/views/span.cons/span.pass.cpp | 142 + .../views/span.cons/stdarray.pass.cpp | 114 + .../containers/views/span.elem/data.pass.cpp | 121 + .../views/span.elem/op_idx.pass.cpp | 119 + .../views/span.iterators/begin.pass.cpp | 116 + .../views/span.iterators/end.pass.cpp | 118 + .../views/span.iterators/rbegin.pass.cpp | 117 + .../views/span.iterators/rend.pass.cpp | 118 + .../views/span.objectrep/as_bytes.pass.cpp | 78 + .../as_writeable_bytes.fail.cpp | 48 + .../as_writeable_bytes.pass.cpp | 78 + .../containers/views/span.obs/empty.pass.cpp | 73 + .../containers/views/span.obs/size.pass.cpp | 91 + .../views/span.obs/size_bytes.pass.cpp | 92 + .../containers/views/span.sub/first.pass.cpp | 136 + .../containers/views/span.sub/last.pass.cpp | 136 + .../views/span.sub/subspan.pass.cpp | 210 + test/std/containers/views/types.pass.cpp | 107 + test/std/depr/depr.auto.ptr/auto.ptr/A.h | 30 + test/std/depr/depr.auto.ptr/auto.ptr/AB.h | 41 + .../auto.ptr.cons/assignment.fail.cpp | 44 + .../auto.ptr.cons/assignment.pass.cpp | 46 + .../auto.ptr/auto.ptr.cons/convert.fail.cpp | 40 + .../auto.ptr/auto.ptr.cons/convert.pass.cpp | 42 + .../auto.ptr.cons/convert_assignment.fail.cpp | 47 + .../auto.ptr.cons/convert_assignment.pass.cpp | 49 + .../auto.ptr/auto.ptr.cons/copy.fail.cpp | 38 + .../auto.ptr/auto.ptr.cons/copy.pass.cpp | 40 + .../auto.ptr/auto.ptr.cons/explicit.fail.cpp | 40 + .../auto.ptr/auto.ptr.cons/pointer.pass.cpp | 42 + .../assign_from_auto_ptr_ref.pass.cpp | 42 + .../convert_from_auto_ptr_ref.pass.cpp | 41 + .../convert_to_auto_ptr.pass.cpp | 38 + .../convert_to_auto_ptr_ref.pass.cpp | 39 + .../auto.ptr/auto.ptr.members/arrow.pass.cpp | 39 + .../auto.ptr/auto.ptr.members/deref.pass.cpp | 39 + .../auto.ptr.members/release.pass.cpp | 40 + .../auto.ptr/auto.ptr.members/reset.pass.cpp | 56 + .../auto.ptr/element_type.pass.cpp | 39 + .../depr/depr.auto.ptr/nothing_to_do.pass.cpp | 12 + .../std/depr/depr.c.headers/assert_h.pass.cpp | 20 + test/std/depr/depr.c.headers/ciso646.pass.cpp | 16 + .../depr/depr.c.headers/complex.h.pass.cpp | 18 + test/std/depr/depr.c.headers/ctype_h.pass.cpp | 103 + test/std/depr/depr.c.headers/errno_h.pass.cpp | 33 + test/std/depr/depr.c.headers/fenv_h.pass.cpp | 76 + test/std/depr/depr.c.headers/float_h.pass.cpp | 184 + .../depr/depr.c.headers/inttypes_h.pass.cpp | 931 + .../std/depr/depr.c.headers/iso646_h.pass.cpp | 17 + .../std/depr/depr.c.headers/limits_h.pass.cpp | 92 + .../std/depr/depr.c.headers/locale_h.pass.cpp | 48 + test/std/depr/depr.c.headers/math_h.pass.cpp | 1530 + .../std/depr/depr.c.headers/setjmp_h.pass.cpp | 25 + .../std/depr/depr.c.headers/signal_h.pass.cpp | 57 + .../std/depr/depr.c.headers/stdarg_h.pass.cpp | 38 + .../depr/depr.c.headers/stdbool_h.pass.cpp | 32 + .../std/depr/depr.c.headers/stddef_h.pass.cpp | 69 + .../std/depr/depr.c.headers/stdint_h.pass.cpp | 291 + test/std/depr/depr.c.headers/stdio_h.pass.cpp | 169 + .../std/depr/depr.c.headers/stdlib_h.pass.cpp | 122 + .../std/depr/depr.c.headers/string_h.pass.cpp | 61 + .../std/depr/depr.c.headers/tgmath_h.pass.cpp | 20 + test/std/depr/depr.c.headers/time_h.pass.cpp | 40 + test/std/depr/depr.c.headers/uchar_h.pass.cpp | 20 + test/std/depr/depr.c.headers/wchar_h.pass.cpp | 130 + .../std/depr/depr.c.headers/wctype_h.pass.cpp | 114 + .../pointer_to_binary_function.cxx1z.fail.cpp | 25 + .../pointer_to_binary_function.pass.cpp | 27 + .../pointer_to_unary_function.cxx1z.fail.cpp | 25 + .../pointer_to_unary_function.pass.cpp | 27 + .../ptr_fun1.cxx1z.fail.cpp | 28 + .../ptr_fun1.pass.cpp | 26 + .../ptr_fun2.cxx1z.fail.cpp | 28 + .../ptr_fun2.pass.cpp | 26 + .../const_mem_fun.cxx1z.fail.cpp | 35 + .../const_mem_fun.pass.cpp | 32 + .../const_mem_fun1.cxx1z.fail.cpp | 35 + .../const_mem_fun1.pass.cpp | 32 + .../const_mem_fun1_ref_t.cxx1z.fail.cpp | 33 + .../const_mem_fun1_ref_t.pass.cpp | 34 + .../const_mem_fun1_t.cxx1z.fail.cpp | 33 + .../const_mem_fun1_t.pass.cpp | 34 + .../const_mem_fun_ref.cxx1z.fail.cpp | 35 + .../const_mem_fun_ref.pass.cpp | 32 + .../const_mem_fun_ref1.cxx1z.fail.cpp | 35 + .../const_mem_fun_ref1.pass.cpp | 32 + .../const_mem_fun_ref_t.cxx1z.fail.cpp | 33 + .../const_mem_fun_ref_t.pass.cpp | 34 + .../const_mem_fun_t.cxx1z.fail.cpp | 33 + .../const_mem_fun_t.pass.cpp | 34 + .../mem_fun.cxx1z.fail.cpp | 35 + .../mem_fun.pass.cpp | 32 + .../mem_fun1.cxx1z.fail.cpp | 35 + .../mem_fun1.pass.cpp | 32 + .../mem_fun1_ref_t.cxx1z.fail.cpp | 33 + .../mem_fun1_ref_t.pass.cpp | 34 + .../mem_fun1_t.cxx1z.fail.cpp | 33 + .../mem_fun1_t.pass.cpp | 34 + .../mem_fun_ref.cxx1z.fail.cpp | 35 + .../mem_fun_ref.pass.cpp | 32 + .../mem_fun_ref1.cxx1z.fail.cpp | 35 + .../mem_fun_ref1.pass.cpp | 32 + .../mem_fun_ref_t.cxx1z.fail.cpp | 33 + .../mem_fun_ref_t.pass.cpp | 34 + .../mem_fun_t.cxx1z.fail.cpp | 33 + .../mem_fun_t.pass.cpp | 34 + .../depr.adaptors/nothing_to_do.pass.cpp | 12 + .../depr.base/binary_function.pass.cpp | 30 + .../depr.base/unary_function.pass.cpp | 28 + .../nothing_to_do.pass.cpp | 12 + .../depr/depr.ios.members/io_state.pass.cpp | 30 + .../depr/depr.ios.members/open_mode.pass.cpp | 30 + .../depr/depr.ios.members/seek_dir.pass.cpp | 30 + .../depr/depr.ios.members/streamoff.pass.cpp | 30 + .../depr/depr.ios.members/streampos.pass.cpp | 29 + .../depr.lib.bind.1st/bind1st.pass.cpp | 25 + .../depr.lib.bind.2nd/bind2nd.pass.cpp | 25 + .../depr.lib.binder.1st/binder1st.pass.cpp | 59 + .../depr.lib.binder.2nd/binder2nd.pass.cpp | 59 + .../depr.lib.binders/nothing_to_do.pass.cpp | 12 + test/std/depr/depr.lib.binders/test_func.h | 33 + .../depr.istrstream.cons/ccp.pass.cpp | 44 + .../depr.istrstream.cons/ccp_size.pass.cpp | 44 + .../depr.istrstream.cons/cp.pass.cpp | 44 + .../depr.istrstream.cons/cp_size.pass.cpp | 44 + .../depr.istrstream.members/rdbuf.pass.cpp | 27 + .../depr.istrstream.members/str.pass.cpp | 26 + .../depr.istrstream/types.pass.cpp | 23 + .../cp_size_mode.pass.cpp | 42 + .../depr.ostrstream.cons/default.pass.cpp | 29 + .../depr.ostrstream.members/freeze.pass.cpp | 34 + .../depr.ostrstream.members/pcount.pass.cpp | 27 + .../depr.ostrstream.members/rdbuf.pass.cpp | 28 + .../depr.ostrstream.members/str.pass.cpp | 27 + .../depr.ostrstream/types.pass.cpp | 23 + .../depr.strstream.cons/cp_size_mode.pass.cpp | 60 + .../depr.strstream.cons/default.pass.cpp | 36 + .../depr.strstream.dest/rdbuf.pass.cpp | 28 + .../depr.strstream.oper/freeze.pass.cpp | 34 + .../depr.strstream.oper/pcount.pass.cpp | 27 + .../depr.strstream.oper/str.pass.cpp | 27 + .../depr.strstream/types.pass.cpp | 32 + .../depr.strstreambuf.cons/ccp_size.pass.cpp | 40 + .../cp_size_cp.pass.cpp | 97 + .../depr.strstreambuf.cons/cscp_size.pass.cpp | 40 + .../depr.strstreambuf.cons/cucp_size.pass.cpp | 40 + .../custom_alloc.pass.cpp | 51 + .../depr.strstreambuf.cons/default.pass.cpp | 31 + .../scp_size_scp.pass.cpp | 97 + .../ucp_size_ucp.pass.cpp | 97 + .../depr.strstreambuf.members/freeze.pass.cpp | 28 + .../overflow.pass.cpp | 36 + .../depr.strstreambuf.members/pcount.pass.cpp | 32 + .../depr.strstreambuf.members/str.pass.cpp | 28 + .../overflow.pass.cpp | 47 + .../pbackfail.pass.cpp | 62 + .../seekoff.pass.cpp | 57 + .../seekpos.pass.cpp | 39 + .../setbuf.pass.cpp | 27 + .../underflow.pass.cpp | 51 + .../depr.strstreambuf/types.pass.cpp | 21 + .../nothing_to_do.pass.cpp | 12 + .../set.unexpected/get_unexpected.pass.cpp | 41 + .../set.unexpected/set_unexpected.pass.cpp | 37 + .../unexpected_handler.pass.cpp | 22 + .../unexpected/unexpected.pass.cpp | 28 + test/std/depr/nothing_to_do.pass.cpp | 12 + .../diagnostics/assertions/cassert.pass.cpp | 20 + .../nothing_to_do.pass.cpp | 12 + test/std/diagnostics/errno/cerrno.pass.cpp | 345 + test/std/diagnostics/nothing_to_do.pass.cpp | 12 + .../domain.error/domain_error.pass.cpp | 42 + .../invalid_argument.pass.cpp | 42 + .../length.error/length_error.pass.cpp | 42 + .../logic.error/logic_error.pass.cpp | 42 + .../out.of.range/out_of_range.pass.cpp | 42 + .../overflow.error/overflow_error.pass.cpp | 42 + .../range.error/range_error.pass.cpp | 42 + .../runtime.error/runtime_error.pass.cpp | 42 + .../underflow.error/underflow_error.pass.cpp | 42 + test/std/diagnostics/syserr/errc.pass.cpp | 104 + .../syserr/is_error_code_enum.pass.cpp | 51 + .../syserr/is_error_condition_enum.pass.cpp | 51 + .../eq_error_code_error_code.pass.cpp | 106 + .../syserr.errcat/nothing_to_do.pass.cpp | 12 + .../syserr.errcat.derived/message.pass.cpp | 34 + .../default_ctor.pass.cpp | 35 + .../syserr.errcat.nonvirtuals/eq.pass.cpp | 26 + .../syserr.errcat.nonvirtuals/lt.pass.cpp | 26 + .../syserr.errcat.nonvirtuals/neq.pass.cpp | 26 + .../generic_category.pass.cpp | 47 + .../system_category.pass.cpp | 51 + .../error_category.pass.cpp | 20 + .../default_error_condition.pass.cpp | 25 + .../equivalent_error_code_int.pass.cpp | 24 + .../equivalent_int_error_condition.pass.cpp | 25 + .../syserr.errcode/nothing_to_do.pass.cpp | 12 + .../ErrorCodeEnum.pass.cpp | 44 + .../default.pass.cpp | 24 + .../int_error_category.pass.cpp | 31 + .../ErrorCodeEnum.pass.cpp | 45 + .../syserr.errcode.modifiers/assign.pass.cpp | 33 + .../syserr.errcode.modifiers/clear.pass.cpp | 30 + .../syserr.errcode.nonmembers/lt.pass.cpp | 27 + .../make_error_code.pass.cpp | 26 + .../stream_inserter.pass.cpp | 27 + .../syserr.errcode.observers/bool.fail.cpp | 30 + .../syserr.errcode.observers/bool.pass.cpp | 30 + .../category.pass.cpp | 23 + .../default_error_condition.pass.cpp | 31 + .../syserr.errcode.observers/message.pass.cpp | 24 + .../syserr.errcode.observers/value.pass.cpp | 23 + .../syserr.errcode.overview/types.pass.cpp | 24 + .../nothing_to_do.pass.cpp | 12 + .../ErrorConditionEnum.pass.cpp | 26 + .../default.pass.cpp | 24 + .../int_error_category.pass.cpp | 31 + .../ErrorConditionEnum.pass.cpp | 27 + .../assign.pass.cpp | 33 + .../clear.pass.cpp | 30 + .../lt.pass.cpp | 27 + .../make_error_condition.pass.cpp | 26 + .../bool.pass.cpp | 30 + .../category.pass.cpp | 23 + .../message.pass.cpp | 24 + .../value.pass.cpp | 23 + .../types.pass.cpp | 23 + .../syserr/syserr.hash/enabled_hash.pass.cpp | 27 + .../syserr/syserr.hash/error_code.pass.cpp | 45 + .../syserr.hash/error_condition.pass.cpp | 45 + .../syserr.syserr/nothing_to_do.pass.cpp | 12 + .../ctor_error_code.pass.cpp | 29 + ...tor_error_code_const_char_pointer.pass.cpp | 30 + .../ctor_error_code_string.pass.cpp | 30 + .../ctor_int_error_category.pass.cpp | 29 + ...error_category_const_char_pointer.pass.cpp | 31 + .../ctor_int_error_category_string.pass.cpp | 31 + .../nothing_to_do.pass.cpp | 12 + .../algorithms/alg.search/search.pass.cpp | 46 + .../fs.req.macros/feature_macro.pass.cpp | 29 + .../fs.req.namespace/namespace.pass.cpp | 24 + .../default.pass.cpp | 128 + .../func.searchers.boyer_moore/hash.pass.cpp | 124 + .../hash.pred.pass.cpp | 142 + .../func.searchers.boyer_moore/pred.pass.cpp | 133 + .../default.pass.cpp | 128 + .../hash.pass.cpp | 123 + .../hash.pred.pass.cpp | 136 + .../pred.pass.cpp | 130 + .../func.searchers.default/default.pass.cpp | 96 + .../default.pred.pass.cpp | 103 + .../make_default_searcher.pass.cpp | 81 + .../make_default_searcher.pred.pass.cpp | 88 + .../func.searchers/nothing_to_do.pass.cpp | 13 + .../header.functional.synop/includes.pass.cpp | 21 + .../experimental/func/nothing_to_do.pass.cpp | 13 + .../iterator/nothing_to_do.pass.cpp | 12 + .../ostream_joiner.cons.pass.cpp | 58 + .../make_ostream_joiner.pass.cpp | 53 + .../ostream_joiner.op.assign.pass.cpp | 120 + .../ostream_joiner.op.postincrement.pass.cpp | 46 + .../ostream_joiner.op.pretincrement.pass.cpp | 46 + .../ostream_joiner.op.star.pass.cpp | 46 + .../operator_bool.pass.cpp | 58 + .../equal_comp.pass.cpp | 60 + .../less_comp.pass.cpp | 69 + .../coroutine.handle.completion/done.pass.cpp | 44 + .../coroutine.handle.con/assign.pass.cpp | 54 + .../coroutine.handle.con/construct.pass.cpp | 53 + .../coroutine.handle.export/address.pass.cpp | 51 + .../from_address.fail.cpp | 46 + .../from_address.pass.cpp | 46 + .../coroutine.handle.hash/hash.pass.cpp | 63 + .../noop_coroutine.pass.cpp | 75 + .../coroutine.handle.prom/promise.pass.cpp | 84 + .../destroy.pass.cpp | 61 + .../resume.pass.cpp | 80 + .../coroutine.handle/void_handle.pass.cpp | 51 + .../coroutine.traits/promise_type.pass.cpp | 77 + .../suspend_always.pass.cpp | 73 + .../suspend_never.pass.cpp | 75 + .../end.to.end/await_result.pass.cpp | 69 + .../end.to.end/bool_await_suspend.pass.cpp | 69 + .../end.to.end/expected.pass.cpp | 89 + .../end.to.end/fullexpr-dtor.pass.cpp | 117 + .../end.to.end/generator.pass.cpp | 103 + .../support.coroutines/end.to.end/go.pass.cpp | 176 + .../end.to.end/multishot_func.pass.cpp | 87 + .../end.to.end/oneshot_func.pass.cpp | 83 + .../support.coroutines/includes.pass.cpp | 25 + .../support.coroutines/lit.local.cfg | 9 + .../assign.pass.cpp | 29 + .../copy.pass.cpp | 48 + .../default.pass.cpp | 49 + .../memory_resource_convert.pass.cpp | 45 + .../other_alloc.pass.cpp | 57 + .../equal.pass.cpp | 134 + .../not_equal.pass.cpp | 105 + .../allocate.pass.cpp | 112 + .../construct_pair.pass.cpp | 53 + .../construct_pair_const_lvalue_pair.pass.cpp | 143 + .../construct_pair_rvalue.pass.cpp | 139 + .../construct_pair_values.pass.cpp | 144 + .../construct_piecewise_pair.pass.cpp | 163 + .../construct_piecewise_pair_evil.pass.cpp | 142 + .../construct_types.pass.cpp | 227 + .../deallocate.pass.cpp | 62 + .../destroy.pass.cpp | 52 + .../resource.pass.cpp | 57 + ...ct_on_container_copy_construction.pass.cpp | 53 + .../nothing_to_do.pass.cpp | 10 + .../nothing_to_do.pass.cpp | 10 + .../alloc_copy.pass.cpp | 53 + .../alloc_move.pass.cpp | 44 + .../default.pass.cpp | 40 + .../do_allocate_and_deallocate.pass.cpp | 115 + .../do_is_equal.pass.cpp | 83 + .../overview.pass.cpp | 39 + .../header_deque_synop.pass.cpp | 37 + .../header_forward_list_synop.pass.cpp | 37 + .../header_list_synop.pass.cpp | 37 + .../header_map_synop.pass.cpp | 69 + .../header_regex_synop.pass.cpp | 57 + .../header_set_synop.pass.cpp | 67 + .../header_string_synop.pass.cpp | 73 + .../header_unordered_map_synop.pass.cpp | 87 + .../header_unordered_set_synop.pass.cpp | 85 + .../header_vector_synop.pass.cpp | 37 + .../default_resource.pass.cpp | 74 + .../new_delete_resource.pass.cpp | 102 + .../null_memory_resource.pass.cpp | 118 + .../nothing_to_do.pass.cpp | 13 + .../memory/memory.resource/construct.fail.cpp | 25 + .../memory.resource.eq/equal.pass.cpp | 76 + .../memory.resource.eq/not_equal.pass.cpp | 75 + .../nothing_to_do.pass.cpp | 10 + .../protected_members.fail.cpp | 27 + .../memory.resource.public/allocate.pass.cpp | 89 + .../deallocate.pass.cpp | 74 + .../memory.resource.public/dtor.pass.cpp | 59 + .../memory.resource.public/is_equal.pass.cpp | 93 + .../memory/nothing_to_do.pass.cpp | 13 + test/std/experimental/nothing_to_do.pass.cpp | 10 + .../simd/simd.abi/vector_extension.pass.cpp | 67 + .../simd/simd.access/default.pass.cpp | 217 + .../simd/simd.casts/simd_cast.pass.cpp | 46 + .../simd/simd.casts/static_simd_cast.pass.cpp | 41 + .../simd/simd.cons/broadcast.pass.cpp | 86 + .../simd/simd.cons/default.pass.cpp | 28 + .../simd/simd.cons/generator.pass.cpp | 91 + .../experimental/simd/simd.cons/load.pass.cpp | 118 + .../experimental/simd/simd.mem/load.pass.cpp | 122 + .../experimental/simd/simd.mem/store.pass.cpp | 95 + .../simd/simd.traits/abi_for_size.pass.cpp | 32 + .../simd/simd.traits/is_abi_tag.pass.cpp | 113 + .../simd/simd.traits/is_simd.pass.cpp | 129 + .../simd.traits/is_simd_flag_type.pass.cpp | 51 + .../simd/simd.traits/is_simd_mask.pass.cpp | 152 + .../meta/meta.detect/detected_or.pass.cpp | 40 + .../meta/meta.detect/detected_t.pass.cpp | 48 + .../meta/meta.detect/is_detected.pass.cpp | 37 + .../is_detected_convertible.pass.cpp | 50 + .../meta.detect/is_detected_exact.pass.cpp | 49 + .../utilities/nothing_to_do.pass.cpp | 13 + .../assign.pass.cpp | 24 + .../assign_convertible_element_type.pass.cpp | 34 + ...ssign_convertible_propagate_const.pass.cpp | 25 + .../assign_element_type.pass.cpp | 34 + .../move_assign.pass.cpp | 32 + .../move_assign_convertible.pass.cpp | 33 + ...ssign_convertible_propagate_const.pass.cpp | 33 + ...rtible_element_type.explicit.ctor.pass.cpp | 28 + ...le_element_type.non-explicit.ctor.pass.cpp | 32 + ...ertible_propagate_const.copy_ctor.pass.cpp | 26 + ...ropagate_const.explicit.move_ctor.pass.cpp | 28 + ...ertible_propagate_const.move_ctor.pass.cpp | 31 + .../propagate_const.ctors/copy_ctor.pass.cpp | 24 + .../element_type.explicit.ctor.pass.cpp | 28 + .../element_type.non-explicit.ctor.pass.cpp | 28 + .../propagate_const.ctors/move_ctor.pass.cpp | 29 + .../dereference.pass.cpp | 34 + ...xplicit_operator_element_type_ptr.pass.cpp | 24 + .../get.pass.cpp | 34 + .../op_arrow.pass.cpp | 34 + .../operator_element_type_ptr.pass.cpp | 35 + .../dereference.pass.cpp | 29 + ...xplicit_operator_element_type_ptr.pass.cpp | 26 + .../propagate_const.observers/get.pass.cpp | 29 + .../op_arrow.pass.cpp | 29 + .../operator_element_type_ptr.pass.cpp | 28 + .../propagate_const.class/swap.pass.cpp | 32 + .../propagate_const.nonmembers/hash.pass.cpp | 44 + .../equal_to.pass.cpp | 36 + .../greater.pass.cpp | 38 + .../greater_equal.pass.cpp | 38 + .../less.pass.cpp | 38 + .../less_equal.pass.cpp | 38 + .../not_equal_to.pass.cpp | 36 + .../propagate_const.relops/equal.pass.cpp | 64 + .../greater_equal.pass.cpp | 54 + .../greater_than.pass.cpp | 50 + .../less_equal.pass.cpp | 55 + .../propagate_const.relops/less_than.pass.cpp | 50 + .../propagate_const.relops/not_equal.pass.cpp | 62 + .../propagate_const.nonmembers/swap.pass.cpp | 31 + .../utility.erased.type/erased_type.pass.cpp | 18 + .../utility/utility.synop/includes.pass.cpp | 20 + .../file.streams/c.files/cinttypes.pass.cpp | 931 + .../file.streams/c.files/cstdio.pass.cpp | 158 + .../file.streams/c.files/gets.fail.cpp | 20 + .../filebuf.assign/member_swap.pass.cpp | 54 + .../filebuf.assign/move_assign.pass.cpp | 56 + .../filebuf.assign/nonmember_swap.pass.cpp | 56 + .../fstreams/filebuf.cons/default.pass.cpp | 30 + .../fstreams/filebuf.cons/move.pass.cpp | 54 + .../filebuf.members/open_path.pass.cpp | 56 + .../filebuf.members/open_pointer.pass.cpp | 51 + .../filebuf.virtuals/overflow.pass.cpp | 144 + .../filebuf.virtuals/pbackfail.pass.cpp | 64 + .../filebuf.virtuals/seekoff.pass.cpp | 66 + .../fstreams/filebuf.virtuals/underflow.dat | 1 + .../filebuf.virtuals/underflow.pass.cpp | 125 + .../filebuf.virtuals/underflow_utf8.dat | 1 + .../fstreams/filebuf/types.pass.cpp | 34 + .../fstream.assign/member_swap.pass.cpp | 91 + .../fstream.assign/move_assign.pass.cpp | 50 + .../fstream.assign/nonmember_swap.pass.cpp | 93 + .../fstreams/fstream.cons/default.pass.cpp | 28 + .../fstreams/fstream.cons/move.pass.cpp | 48 + .../fstreams/fstream.cons/path.pass.cpp | 49 + .../fstreams/fstream.cons/pointer.pass.cpp | 44 + .../fstreams/fstream.cons/string.pass.cpp | 46 + .../fstreams/fstream.members/close.pass.cpp | 42 + .../fstream.members/open_path.pass.cpp | 52 + .../fstream.members/open_pointer.pass.cpp | 50 + .../fstream.members/open_string.pass.cpp | 50 + .../fstreams/fstream.members/rdbuf.pass.cpp | 30 + .../fstreams/fstream/types.pass.cpp | 34 + .../ifstream.assign/member_swap.pass.cpp | 42 + .../ifstream.assign/move_assign.pass.cpp | 40 + .../ifstream.assign/nonmember_swap.pass.cpp | 43 + .../fstreams/ifstream.assign/test.dat | 1 + .../fstreams/ifstream.assign/test2.dat | 1 + .../fstreams/ifstream.cons/default.pass.cpp | 28 + .../fstreams/ifstream.cons/move.pass.cpp | 38 + .../fstreams/ifstream.cons/path.pass.cpp | 53 + .../fstreams/ifstream.cons/pointer.pass.cpp | 40 + .../fstreams/ifstream.cons/string.pass.cpp | 40 + .../fstreams/ifstream.cons/test.dat | 1 + .../fstreams/ifstream.members/close.pass.cpp | 38 + .../ifstream.members/open_path.pass.cpp | 48 + .../ifstream.members/open_pointer.pass.cpp | 46 + .../ifstream.members/open_string.pass.cpp | 46 + .../fstreams/ifstream.members/rdbuf.pass.cpp | 32 + .../fstreams/ifstream.members/test.dat | 1 + .../fstreams/ifstream/types.pass.cpp | 34 + .../file.streams/fstreams/lit.local.cfg | 2 + .../ofstream.assign/member_swap.pass.cpp | 99 + .../ofstream.assign/move_assign.pass.cpp | 52 + .../ofstream.assign/nonmember_swap.pass.cpp | 100 + .../fstreams/ofstream.cons/default.pass.cpp | 28 + .../fstreams/ofstream.cons/move.pass.cpp | 50 + .../fstreams/ofstream.cons/path.pass.cpp | 69 + .../fstreams/ofstream.cons/pointer.pass.cpp | 58 + .../fstreams/ofstream.cons/string.pass.cpp | 58 + .../fstreams/ofstream.members/close.pass.cpp | 42 + .../ofstream.members/open_path.pass.cpp | 62 + .../ofstream.members/open_pointer.pass.cpp | 58 + .../ofstream.members/open_string.pass.cpp | 58 + .../fstreams/ofstream.members/rdbuf.pass.cpp | 36 + .../fstreams/ofstream/types.pass.cpp | 34 + .../file.streams/nothing_to_do.pass.cpp | 12 + .../Inputs/static_test_env/dir1/dir2/afile3 | 0 .../static_test_env/dir1/dir2/dir3/file5 | 0 .../Inputs/static_test_env/dir1/dir2/file4 | 0 .../Inputs/static_test_env/dir1/file1 | 0 .../Inputs/static_test_env/dir1/file2 | 1 + .../Inputs/static_test_env/empty_file | 0 .../Inputs/static_test_env/non_empty_file | 1 + .../directory_entry.cons/copy.pass.cpp | 74 + .../directory_entry.cons/copy_assign.pass.cpp | 82 + .../directory_entry.cons/default.pass.cpp | 31 + .../default_const.pass.cpp | 32 + .../directory_entry.cons/move.pass.cpp | 72 + .../directory_entry.cons/move_assign.pass.cpp | 78 + .../directory_entry.cons/path.pass.cpp | 182 + .../directory_entry.mods/assign.pass.cpp | 132 + .../directory_entry.mods/refresh.pass.cpp | 341 + .../replace_filename.pass.cpp | 169 + .../directory_entry.obs/comparisons.pass.cpp | 81 + .../directory_entry.obs/file_size.pass.cpp | 242 + .../file_type_obs.pass.cpp | 258 + .../hard_link_count.pass.cpp | 242 + .../last_write_time.pass.cpp | 215 + .../directory_entry.obs/path.pass.cpp | 88 + .../directory_entry.obs/status.pass.cpp | 58 + .../symlink_status.pass.cpp | 58 + .../directory_iterator.members/copy.pass.cpp | 59 + .../copy_assign.pass.cpp | 98 + .../directory_iterator.members/ctor.pass.cpp | 254 + .../default_ctor.pass.cpp | 35 + .../increment.pass.cpp | 117 + .../directory_iterator.members/move.pass.cpp | 62 + .../move_assign.pass.cpp | 116 + .../begin_end.pass.cpp | 61 + .../class.directory_iterator/types.pass.cpp | 37 + .../file_status.cons.pass.cpp | 60 + .../file_status.mods.pass.cpp | 49 + .../file_status.obs.pass.cpp | 45 + .../filesystem_error.members.pass.cpp | 102 + .../class.path/path.itr/iterator.pass.cpp | 105 + .../path.member/path.append.pass.cpp | 339 + .../path.assign/braced_init.pass.cpp | 31 + .../path.member/path.assign/copy.pass.cpp | 36 + .../path.member/path.assign/move.pass.cpp | 42 + .../path.member/path.assign/source.pass.cpp | 241 + .../path.member/path.compare.pass.cpp | 138 + .../path.member/path.concat.pass.cpp | 388 + .../path.member/path.construct/copy.pass.cpp | 34 + .../path.construct/default.pass.cpp | 30 + .../path.member/path.construct/move.pass.cpp | 40 + .../path.construct/source.pass.cpp | 129 + .../path.member/path.decompose/empty.fail.cpp | 28 + .../path.decompose/path.decompose.pass.cpp | 216 + .../path.gen/lexically_normal.pass.cpp | 142 + .../lexically_relative_and_proximate.pass.cpp | 89 + .../generic_string_alloc.pass.cpp | 55 + .../path.generic.obs/named_overloads.pass.cpp | 61 + .../path.member/path.modifiers/clear.pass.cpp | 44 + .../path.modifiers/make_preferred.pass.cpp | 54 + .../path.modifiers/remove_filename.pass.cpp | 73 + .../path.modifiers/replace_extension.pass.cpp | 72 + .../path.modifiers/replace_filename.pass.cpp | 71 + .../path.member/path.modifiers/swap.pass.cpp | 80 + .../path.native.obs/c_str.pass.cpp | 42 + .../path.native.obs/named_overloads.pass.cpp | 62 + .../path.native.obs/native.pass.cpp | 39 + .../path.native.obs/operator_string.pass.cpp | 46 + .../path.native.obs/string_alloc.pass.cpp | 137 + .../tested_in_path_decompose.pass.cpp | 32 + .../path.nonmember/append_op.pass.cpp | 32 + .../comparison_ops_tested_elsewhere.pass.cpp | 14 + .../hash_value_tested_elswhere.pass.cpp | 14 + .../path.nonmember/path.factory.pass.cpp | 52 + .../path.nonmember/path.io.pass.cpp | 98 + .../path.io.unicode_bug.pass.cpp | 69 + .../class.path/path.nonmember/swap.pass.cpp | 49 + .../filesystems/class.path/synop.pass.cpp | 38 + .../rec.dir.itr.members/copy.pass.cpp | 79 + .../rec.dir.itr.members/copy_assign.pass.cpp | 158 + .../rec.dir.itr.members/ctor.pass.cpp | 246 + .../rec.dir.itr.members/depth.pass.cpp | 66 + .../disable_recursion_pending.pass.cpp | 43 + .../rec.dir.itr.members/increment.pass.cpp | 496 + .../rec.dir.itr.members/move.pass.cpp | 80 + .../rec.dir.itr.members/move_assign.pass.cpp | 169 + .../rec.dir.itr.members/pop.pass.cpp | 93 + .../recursion_pending.pass.cpp | 162 + .../rec.dir.itr.nonmembers/begin_end.pass.cpp | 61 + .../fs.enum/check_bitmask_types.hpp | 75 + .../fs.enum/enum.copy_options.pass.cpp | 63 + .../fs.enum/enum.directory_options.pass.cpp | 45 + .../fs.enum/enum.file_type.pass.cpp | 47 + .../fs.enum/enum.path.format.pass.cpp | 38 + .../fs.enum/enum.perm_options.pass.cpp | 48 + .../filesystems/fs.enum/enum.perms.pass.cpp | 64 + .../fs.error.report/tested_elsewhere.pass.cpp | 12 + .../file_time_type.pass.cpp | 46 + .../fs.op.absolute/absolute.pass.cpp | 58 + .../fs.op.canonical/canonical.pass.cpp | 124 + .../fs.op.funcs/fs.op.copy/copy.pass.cpp | 315 + .../fs.op.copy_file/copy_file.pass.cpp | 189 + .../fs.op.copy_file/copy_file_large.pass.cpp | 99 + .../fs.op.copy_symlink/copy_symlink.pass.cpp | 108 + .../create_directories.pass.cpp | 101 + .../create_directory.pass.cpp | 103 + .../create_directory_with_attributes.pass.cpp | 132 + .../create_directory_symlink.pass.cpp | 65 + .../create_hard_link.pass.cpp | 74 + .../create_symlink.pass.cpp | 76 + .../fs.op.current_path/current_path.pass.cpp | 93 + .../fs.op.equivalent/equivalent.pass.cpp | 112 + .../fs.op.funcs/fs.op.exists/exists.pass.cpp | 97 + .../fs.op.file_size/file_size.pass.cpp | 85 + .../fs.op.hard_lk_ct/hard_link_count.pass.cpp | 99 + .../is_block_file.pass.cpp | 84 + .../is_character_file.pass.cpp | 84 + .../fs.op.is_directory/is_directory.pass.cpp | 91 + .../fs.op.is_empty/is_empty.pass.cpp | 109 + .../fs.op.is_fifo/is_fifo.pass.cpp | 84 + .../fs.op.is_other/is_other.pass.cpp | 84 + .../is_regular_file.pass.cpp | 87 + .../fs.op.is_socket/is_socket.pass.cpp | 84 + .../fs.op.is_symlink/is_symlink.pass.cpp | 105 + .../last_write_time.pass.cpp | 594 + .../fs.op.permissions/permissions.pass.cpp | 182 + .../fs.op.proximate/proximate.pass.cpp | 133 + .../fs.op.read_symlink/read_symlink.pass.cpp | 100 + .../fs.op.relative/relative.pass.cpp | 78 + .../fs.op.funcs/fs.op.remove/remove.pass.cpp | 109 + .../fs.op.remove_all/remove_all.pass.cpp | 153 + .../fs.op.funcs/fs.op.rename/rename.pass.cpp | 125 + .../fs.op.resize_file/resize_file.pass.cpp | 109 + .../fs.op.funcs/fs.op.space/space.pass.cpp | 128 + .../fs.op.funcs/fs.op.status/status.pass.cpp | 166 + .../fs.op.status_known/status_known.pass.cpp | 59 + .../symlink_status.pass.cpp | 192 + .../temp_directory_path.pass.cpp | 121 + .../weakly_canonical.pass.cpp | 76 + .../fs.req.macros/feature_macro.pass.cpp | 29 + .../fs.req.namespace/namespace.fail.cpp | 29 + .../fs.req.namespace/namespace.pass.cpp | 26 + .../input.output/filesystems/lit.local.cfg | 3 + .../nothing_to_do.pass.cpp | 12 + .../ext.manip/get_money.pass.cpp | 75 + .../ext.manip/get_time.pass.cpp | 75 + .../ext.manip/put_money.pass.cpp | 91 + .../ext.manip/put_time.pass.cpp | 86 + .../iostream.assign/member_swap.pass.cpp | 85 + .../iostream.assign/move_assign.pass.cpp | 90 + .../iostreamclass/iostream.cons/move.pass.cpp | 76 + .../iostream.cons/streambuf.pass.cpp | 55 + .../iostream.dest/nothing_to_do.pass.cpp | 12 + .../iostreamclass/types.pass.cpp | 37 + .../bool.pass.cpp | 79 + .../double.pass.cpp | 79 + .../float.pass.cpp | 79 + .../istream.formatted.arithmetic/int.pass.cpp | 79 + .../long.pass.cpp | 79 + .../long_double.pass.cpp | 79 + .../long_long.pass.cpp | 79 + .../pointer.pass.cpp | 101 + .../short.pass.cpp | 79 + .../unsigned_int.pass.cpp | 79 + .../unsigned_long.pass.cpp | 79 + .../unsigned_long_long.pass.cpp | 79 + .../unsigned_short.pass.cpp | 79 + .../tested_elsewhere.pass.cpp | 12 + .../istream_extractors/basic_ios.pass.cpp | 38 + .../istream_extractors/chart.pass.cpp | 87 + .../istream_extractors/ios_base.pass.cpp | 36 + .../istream_extractors/istream.pass.cpp | 38 + .../istream_extractors/signed_char.pass.cpp | 70 + .../signed_char_pointer.pass.cpp | 85 + .../istream_extractors/streambuf.pass.cpp | 69 + .../istream_extractors/unsigned_char.pass.cpp | 70 + .../unsigned_char_pointer.pass.cpp | 85 + .../wchar_t_pointer.pass.cpp | 85 + .../istream.formatted/nothing_to_do.pass.cpp | 12 + .../input.streams/istream.manip/ws.pass.cpp | 79 + .../istream.rvalue/rvalue.pass.cpp | 72 + .../istream.unformatted/get.pass.cpp | 102 + .../istream.unformatted/get_chart.pass.cpp | 105 + .../get_pointer_size.pass.cpp | 161 + .../get_pointer_size_chart.pass.cpp | 161 + .../get_streambuf.pass.cpp | 88 + .../get_streambuf_chart.pass.cpp | 89 + .../getline_pointer_size.pass.cpp | 145 + .../getline_pointer_size_chart.pass.cpp | 145 + .../istream.unformatted/ignore.pass.cpp | 76 + .../istream.unformatted/ignore_0xff.pass.cpp | 37 + .../istream.unformatted/peek.pass.cpp | 69 + .../istream.unformatted/putback.pass.cpp | 89 + .../istream.unformatted/read.pass.cpp | 83 + .../istream.unformatted/readsome.pass.cpp | 88 + .../istream.unformatted/seekg.pass.cpp | 78 + .../istream.unformatted/seekg_off.pass.cpp | 90 + .../istream.unformatted/sync.pass.cpp | 64 + .../istream.unformatted/tellg.pass.cpp | 63 + .../istream.unformatted/unget.pass.cpp | 81 + .../istream.assign/member_swap.pass.cpp | 85 + .../istream.assign/move_assign.pass.cpp | 90 + .../istream/istream.cons/copy.fail.cpp | 55 + .../istream/istream.cons/move.pass.cpp | 74 + .../istream/istream.cons/streambuf.pass.cpp | 55 + .../istream/istream_sentry/ctor.pass.cpp | 128 + .../input.streams/istream/types.pass.cpp | 35 + .../iostream.format/nothing_to_do.pass.cpp | 12 + .../ostream.assign/member_swap.pass.cpp | 85 + .../ostream.assign/move_assign.pass.cpp | 90 + .../output.streams/ostream.cons/move.pass.cpp | 72 + .../ostream.cons/streambuf.pass.cpp | 53 + .../ostream.formatted/nothing_to_do.pass.cpp | 12 + .../tested_elsewhere.pass.cpp | 12 + .../bool.pass.cpp | 91 + .../double.pass.cpp | 83 + .../float.pass.cpp | 83 + .../ostream.inserters.arithmetic/int.pass.cpp | 83 + .../long.pass.cpp | 83 + .../long_double.pass.cpp | 83 + .../long_long.pass.cpp | 83 + .../minmax_showbase.pass.cpp | 97 + .../minus1.pass.cpp | 114 + .../pointer.pass.cpp | 91 + .../short.pass.cpp | 83 + .../unsigned_int.pass.cpp | 83 + .../unsigned_long.pass.cpp | 83 + .../unsigned_long_long.pass.cpp | 83 + .../unsigned_short.pass.cpp | 83 + .../CharT.pass.cpp | 88 + .../CharT_pointer.pass.cpp | 88 + .../ostream.inserters.character/char.pass.cpp | 88 + .../char_pointer.pass.cpp | 88 + .../char_to_wide.pass.cpp | 88 + .../char_to_wide_pointer.pass.cpp | 88 + .../signed_char.pass.cpp | 88 + .../signed_char_pointer.pass.cpp | 88 + .../unsigned_char.pass.cpp | 88 + .../unsigned_char_pointer.pass.cpp | 88 + .../ostream.inserters/basic_ios.pass.cpp | 70 + .../ostream.inserters/ios_base.pass.cpp | 61 + .../ostream.inserters/ostream.pass.cpp | 69 + .../ostream.inserters/streambuf.pass.cpp | 69 + .../ostream.manip/endl.pass.cpp | 80 + .../ostream.manip/ends.pass.cpp | 71 + .../ostream.manip/flush.pass.cpp | 58 + .../ostream.rvalue/CharT_pointer.pass.cpp | 70 + .../ostream.seeks/seekp.pass.cpp | 68 + .../ostream.seeks/seekp2.pass.cpp | 70 + .../ostream.seeks/tellp.pass.cpp | 54 + .../ostream.unformatted/flush.pass.cpp | 54 + .../ostream.unformatted/put.pass.cpp | 76 + .../ostream.unformatted/write.pass.cpp | 76 + .../output.streams/ostream/types.pass.cpp | 35 + .../ostream_sentry/construct.pass.cpp | 61 + .../ostream_sentry/destruct.pass.cpp | 79 + .../quoted.manip/quoted.pass.cpp | 181 + .../quoted.manip/quoted_char.fail.cpp | 40 + .../quoted.manip/quoted_traits.fail.cpp | 46 + .../std.manip/resetiosflags.pass.cpp | 54 + .../std.manip/setbase.pass.cpp | 74 + .../std.manip/setfill.pass.cpp | 38 + .../std.manip/setiosflags.pass.cpp | 54 + .../std.manip/setprecision.pass.cpp | 50 + .../iostream.format/std.manip/setw.pass.cpp | 50 + .../iostream.forward/iosfwd.pass.cpp | 123 + .../narrow.stream.objects/cerr.pass.cpp | 29 + .../narrow.stream.objects/cin.pass.cpp | 34 + .../narrow.stream.objects/clog.pass.cpp | 23 + .../narrow.stream.objects/cout.pass.cpp | 29 + .../wide.stream.objects/wcerr.pass.cpp | 29 + .../wide.stream.objects/wcin.pass.cpp | 34 + .../wide.stream.objects/wclog.pass.cpp | 23 + .../wide.stream.objects/wcout.pass.cpp | 25 + .../fpos/fpos.members/state.pass.cpp | 24 + .../fpos/fpos.operations/addition.pass.cpp | 28 + .../fpos/fpos.operations/ctor_int.pass.cpp | 24 + .../fpos/fpos.operations/difference.pass.cpp | 26 + .../fpos/fpos.operations/eq_int.pass.cpp | 26 + .../fpos/fpos.operations/offset.pass.cpp | 25 + .../fpos/fpos.operations/streamsize.pass.cpp | 24 + .../fpos/fpos.operations/subtraction.pass.cpp | 28 + .../fpos/nothing_to_do.pass.cpp | 12 + .../ios.base/fmtflags.state/flags.pass.cpp | 33 + .../fmtflags.state/flags_fmtflags.pass.cpp | 36 + .../fmtflags.state/precision.pass.cpp | 33 + .../precision_streamsize.pass.cpp | 36 + .../fmtflags.state/setf_fmtflags.pass.cpp | 36 + .../setf_fmtflags_mask.pass.cpp | 36 + .../fmtflags.state/unsetf_mask.pass.cpp | 35 + .../ios.base/fmtflags.state/width.pass.cpp | 33 + .../fmtflags.state/width_streamsize.pass.cpp | 36 + .../register_callback.pass.cpp | 56 + .../ios.base/ios.base.cons/dtor.pass.cpp | 86 + .../ios.base/ios.base.locales/getloc.pass.cpp | 34 + .../ios.base/ios.base.locales/imbue.pass.cpp | 91 + .../ios.base/ios.base.storage/iword.pass.cpp | 45 + .../ios.base/ios.base.storage/pword.pass.cpp | 46 + .../ios.base/ios.base.storage/xalloc.pass.cpp | 26 + .../sync_with_stdio.pass.cpp | 27 + .../ios_Init/tested_elsewhere.pass.cpp | 12 + .../ctor_char_pointer_error_code.pass.cpp | 41 + .../ctor_string_error_code.pass.cpp | 44 + .../ios.types/ios_fmtflags/fmtflags.pass.cpp | 81 + .../ios.types/ios_iostate/iostate.pass.cpp | 36 + .../ios.types/ios_openmode/openmode.pass.cpp | 42 + .../ios.types/ios_seekdir/seekdir.pass.cpp | 26 + .../ios.base/ios.types/nothing_to_do.pass.cpp | 12 + .../ios.base/nothing_to_do.pass.cpp | 16 + .../basic.ios.cons/ctor_streambuf.pass.cpp | 48 + .../ios/basic.ios.members/copyfmt.pass.cpp | 194 + .../ios/basic.ios.members/fill.pass.cpp | 23 + .../basic.ios.members/fill_char_type.pass.cpp | 26 + .../ios/basic.ios.members/imbue.pass.cpp | 103 + .../ios/basic.ios.members/move.pass.cpp | 140 + .../ios/basic.ios.members/narrow.pass.cpp | 24 + .../ios/basic.ios.members/rdbuf.pass.cpp | 31 + .../rdbuf_streambuf.pass.cpp | 34 + .../ios/basic.ios.members/set_rdbuf.pass.cpp | 64 + .../ios/basic.ios.members/swap.pass.cpp | 168 + .../ios/basic.ios.members/tie.pass.cpp | 23 + .../basic.ios.members/tie_ostream.pass.cpp | 26 + .../ios/basic.ios.members/widen.pass.cpp | 23 + .../ios/iostate.flags/bad.pass.cpp | 41 + .../ios/iostate.flags/bool.pass.cpp | 34 + .../ios/iostate.flags/clear.pass.cpp | 70 + .../ios/iostate.flags/eof.pass.cpp | 37 + .../ios/iostate.flags/exceptions.pass.cpp | 33 + .../iostate.flags/exceptions_iostate.pass.cpp | 52 + .../ios/iostate.flags/fail.pass.cpp | 41 + .../ios/iostate.flags/good.pass.cpp | 35 + .../ios/iostate.flags/not.pass.cpp | 25 + .../ios/iostate.flags/rdstate.pass.cpp | 25 + .../ios/iostate.flags/setstate.pass.cpp | 69 + .../iostreams.base/ios/types.pass.cpp | 33 + .../is_error_code_enum_io_errc.pass.cpp | 25 + .../adjustfield.manip/internal.pass.cpp | 29 + .../adjustfield.manip/left.pass.cpp | 29 + .../adjustfield.manip/right.pass.cpp | 29 + .../basefield.manip/dec.pass.cpp | 29 + .../basefield.manip/hex.pass.cpp | 29 + .../basefield.manip/oct.pass.cpp | 29 + .../iostream_category.pass.cpp | 23 + .../error.reporting/make_error_code.pass.cpp | 24 + .../make_error_condition.pass.cpp | 24 + .../floatfield.manip/defaultfloat.pass.cpp | 30 + .../floatfield.manip/fixed.pass.cpp | 29 + .../floatfield.manip/hexfloat.pass.cpp | 30 + .../floatfield.manip/scientific.pass.cpp | 29 + .../fmtflags.manip/boolalpha.pass.cpp | 29 + .../fmtflags.manip/noboolalpha.pass.cpp | 30 + .../fmtflags.manip/noshowbase.pass.cpp | 30 + .../fmtflags.manip/noshowpoint.pass.cpp | 30 + .../fmtflags.manip/noshowpos.pass.cpp | 30 + .../fmtflags.manip/noskipws.pass.cpp | 30 + .../fmtflags.manip/nounitbuf.pass.cpp | 30 + .../fmtflags.manip/nouppercase.pass.cpp | 30 + .../fmtflags.manip/showbase.pass.cpp | 29 + .../fmtflags.manip/showpoint.pass.cpp | 29 + .../fmtflags.manip/showpos.pass.cpp | 29 + .../fmtflags.manip/skipws.pass.cpp | 29 + .../fmtflags.manip/unitbuf.pass.cpp | 29 + .../fmtflags.manip/uppercase.pass.cpp | 29 + .../std.ios.manip/nothing_to_do.pass.cpp | 12 + .../stream.types/streamoff.pass.cpp | 21 + .../stream.types/streamsize.pass.cpp | 21 + .../tested_elsewhere.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + test/std/input.output/nothing_to_do.pass.cpp | 12 + .../streambuf.reqts/tested_elsewhere.pass.cpp | 12 + .../streambuf/streambuf.cons/copy.fail.cpp | 25 + .../streambuf/streambuf.cons/copy.pass.cpp | 86 + .../streambuf/streambuf.cons/default.fail.cpp | 22 + .../streambuf/streambuf.cons/default.pass.cpp | 58 + .../streambuf.members/nothing_to_do.pass.cpp | 12 + .../streambuf.buffer/pubseekoff.pass.cpp | 35 + .../streambuf.buffer/pubseekpos.pass.cpp | 34 + .../streambuf.buffer/pubsetbuf.pass.cpp | 33 + .../streambuf.buffer/pubsync.pass.cpp | 33 + .../streambuf.locales/locales.pass.cpp | 52 + .../streambuf.pub.get/in_avail.pass.cpp | 52 + .../streambuf.pub.get/sbumpc.pass.cpp | 56 + .../streambuf.pub.get/sgetc.pass.cpp | 56 + .../streambuf.pub.get/sgetn.pass.cpp | 41 + .../streambuf.pub.get/snextc.pass.cpp | 56 + .../streambuf.pub.pback/sputbackc.pass.cpp | 56 + .../streambuf.pub.pback/sungetc.pass.cpp | 56 + .../streambuf.pub.put/sputc.pass.cpp | 63 + .../streambuf.pub.put/sputn.pass.cpp | 41 + .../nothing_to_do.pass.cpp | 12 + .../streambuf.assign/assign.pass.cpp | 93 + .../streambuf.assign/swap.pass.cpp | 102 + .../streambuf.get.area/gbump.pass.cpp | 59 + .../streambuf.get.area/setg.pass.cpp | 49 + .../streambuf.put.area/pbump.pass.cpp | 61 + .../streambuf.put.area/pbump2gig.pass.cpp | 44 + .../streambuf.put.area/setp.pass.cpp | 49 + .../streambuf.virtuals/nothing_to_do.pass.cpp | 12 + .../tested_elsewhere.pass.cpp | 12 + .../streambuf.virt.get/showmanyc.pass.cpp | 33 + .../streambuf.virt.get/uflow.pass.cpp | 33 + .../streambuf.virt.get/underflow.pass.cpp | 30 + .../streambuf.virt.get/xsgetn.pass.cpp | 41 + .../nothing_to_do.pass.cpp | 12 + .../streambuf.virt.pback/pbackfail.pass.cpp | 32 + .../streambuf.virt.put/overflow.pass.cpp | 30 + .../streambuf.virt.put/xsputn.pass.cpp | 44 + .../stream.buffers/streambuf/types.pass.cpp | 39 + .../istringstream.assign/member_swap.pass.cpp | 56 + .../istringstream.assign/move.pass.cpp | 86 + .../nonmember_swap.pass.cpp | 59 + .../istringstream.cons/default.pass.cpp | 46 + .../istringstream.cons/move.pass.cpp | 48 + .../istringstream.cons/string.pass.cpp | 67 + .../istringstream.members/str.pass.cpp | 56 + .../istringstream/types.pass.cpp | 36 + .../ostringstream.assign/member_swap.pass.cpp | 48 + .../ostringstream.assign/move.pass.cpp | 46 + .../nonmember_swap.pass.cpp | 48 + .../ostringstream.cons/default.pass.cpp | 46 + .../ostringstream.cons/move.pass.cpp | 44 + .../ostringstream.cons/string.pass.cpp | 59 + .../ostringstream.members/str.pass.cpp | 52 + .../ostringstream/types.pass.cpp | 36 + .../stringbuf.assign/member_swap.pass.cpp | 64 + .../stringbuf/stringbuf.assign/move.pass.cpp | 58 + .../stringbuf.assign/nonmember_swap.pass.cpp | 66 + .../stringbuf/stringbuf.cons/default.pass.cpp | 53 + .../stringbuf/stringbuf.cons/move.pass.cpp | 52 + .../stringbuf/stringbuf.cons/string.pass.cpp | 47 + .../stringbuf/stringbuf.members/str.pass.cpp | 34 + .../stringbuf.virtuals/overflow.pass.cpp | 101 + .../stringbuf.virtuals/pbackfail.pass.cpp | 96 + .../stringbuf.virtuals/seekoff.pass.cpp | 167 + .../stringbuf.virtuals/seekpos.pass.cpp | 77 + .../stringbuf.virtuals/setbuf.pass.cpp | 32 + .../stringbuf.virtuals/underflow.pass.cpp | 70 + .../string.streams/stringbuf/types.pass.cpp | 36 + .../stringstream.cons/default.pass.cpp | 46 + .../stringstream.cons/move.pass.cpp | 52 + .../stringstream.cons/move2.pass.cpp | 38 + .../stringstream.cons/string.pass.cpp | 68 + .../stringstream.assign/member_swap.pass.cpp | 56 + .../stringstream.assign/move.pass.cpp | 54 + .../nonmember_swap.pass.cpp | 59 + .../stringstream.members/str.pass.cpp | 62 + .../stringstream/types.pass.cpp | 36 + .../iterator.container/data.pass.cpp | 87 + .../iterator.container/empty.array.fail.cpp | 28 + .../empty.container.fail.cpp | 28 + .../empty.initializer_list.fail.cpp | 28 + .../iterator.container/empty.pass.cpp | 89 + .../iterator.container/size.pass.cpp | 91 + .../iterator.basic/iterator.pass.cpp | 82 + .../iterator.operations/advance.pass.cpp | 72 + .../iterator.operations/distance.pass.cpp | 61 + .../iterator.operations/next.pass.cpp | 87 + .../iterator.operations/prev.pass.cpp | 78 + .../iterator.traits/const_pointer.pass.cpp | 35 + .../const_volatile_pointer.pass.cpp | 28 + .../iterator.traits/empty.pass.cpp | 38 + .../iterator.traits/iterator.pass.cpp | 43 + .../iterator.traits/pointer.pass.cpp | 35 + .../iterator.traits/volatile_pointer.pass.cpp | 28 + .../nothing_to_do.pass.cpp | 12 + .../bidirectional_iterator_tag.pass.cpp | 25 + .../forward_iterator_tag.pass.cpp | 25 + .../input_iterator_tag.pass.cpp | 23 + .../output_iterator_tag.pass.cpp | 23 + .../random_access_iterator_tag.pass.cpp | 25 + .../iterator.range/begin-end.fail.cpp | 51 + .../iterator.range/begin-end.pass.cpp | 201 + .../nothing_to_do.pass.cpp | 12 + .../forward.iterators/nothing_to_do.pass.cpp | 12 + .../input.iterators/nothing_to_do.pass.cpp | 12 + .../iterator.iterators/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../output.iterators/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../iterator.synopsis/nothing_to_do.pass.cpp | 12 + .../iterators.general/gcc_workaround.pass.cpp | 21 + .../iterators.general/nothing_to_do.pass.cpp | 12 + .../back.insert.iter.cons/container.fail.cpp | 24 + .../back.insert.iter.cons/container.pass.cpp | 31 + .../back.insert.iter.op++/post.pass.cpp | 36 + .../back.insert.iter.op++/pre.pass.cpp | 34 + .../back.insert.iter.op=/lv_value.pass.cpp | 46 + .../back.insert.iter.op=/rv_value.pass.cpp | 38 + .../back.insert.iter.op_astrk/test.pass.cpp | 34 + .../back.inserter/test.pass.cpp | 35 + .../nothing_to_do.pass.cpp | 12 + .../back.insert.iterator/types.pass.cpp | 59 + .../front.insert.iter.cons/container.fail.cpp | 24 + .../front.insert.iter.cons/container.pass.cpp | 31 + .../front.insert.iter.op++/post.pass.cpp | 36 + .../front.insert.iter.op++/pre.pass.cpp | 34 + .../front.insert.iter.op=/lv_value.pass.cpp | 47 + .../front.insert.iter.op=/rv_value.pass.cpp | 36 + .../front.insert.iter.op_astrk/test.pass.cpp | 34 + .../front.inserter/test.pass.cpp | 35 + .../nothing_to_do.pass.cpp | 12 + .../front.insert.iterator/types.pass.cpp | 60 + .../insert.iter.cons/test.pass.cpp | 31 + .../insert.iter.op++/post.pass.cpp | 36 + .../insert.iter.op++/pre.pass.cpp | 34 + .../insert.iter.op=/lv_value.pass.cpp | 85 + .../insert.iter.op=/rv_value.pass.cpp | 95 + .../insert.iter.op_astrk/test.pass.cpp | 34 + .../insert.iter.ops/inserter/test.pass.cpp | 35 + .../insert.iter.ops/nothing_to_do.pass.cpp | 12 + .../insert.iterator/types.pass.cpp | 65 + .../insert.iterators/nothing_to_do.pass.cpp | 12 + .../make_move_iterator.pass.cpp | 57 + .../move.iter.nonmember/minus.pass.cpp | 53 + .../move.iter.nonmember/plus.pass.cpp | 53 + .../move.iter.op.+/difference_type.pass.cpp | 52 + .../move.iter.op.+=/difference_type.pass.cpp | 53 + .../move.iter.op.-/difference_type.pass.cpp | 52 + .../move.iter.op.-=/difference_type.pass.cpp | 49 + .../move.iter.op.comp/op_eq.pass.cpp | 62 + .../move.iter.op.comp/op_gt.pass.cpp | 58 + .../move.iter.op.comp/op_gte.pass.cpp | 58 + .../move.iter.op.comp/op_lt.pass.cpp | 58 + .../move.iter.op.comp/op_lte.pass.cpp | 58 + .../move.iter.op.comp/op_neq.pass.cpp | 62 + .../move.iter.op.const/convert.fail.cpp | 38 + .../move.iter.op.const/convert.pass.cpp | 56 + .../move.iter.op.const/default.pass.cpp | 45 + .../move.iter.op.const/iter.fail.cpp | 31 + .../move.iter.op.const/iter.pass.cpp | 48 + .../tested_elsewhere.pass.cpp | 12 + .../move.iter.op.decr/post.pass.cpp | 53 + .../move.iter.op.decr/pre.pass.cpp | 53 + .../move.iter.op.incr/post.pass.cpp | 55 + .../move.iter.op.incr/pre.pass.cpp | 55 + .../difference_type.pass.cpp | 68 + .../move.iter.op.ref/op_arrow.pass.cpp | 46 + .../move.iter.op.star/op_star.pass.cpp | 74 + .../move.iter.op=/move_iterator.fail.cpp | 39 + .../move.iter.op=/move_iterator.pass.cpp | 60 + .../move.iter.ops/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../move.iterator/types.pass.cpp | 95 + .../move.iterators/nothing_to_do.pass.cpp | 12 + .../predef.iterators/nothing_to_do.pass.cpp | 12 + .../reverse.iterators/nothing_to_do.pass.cpp | 12 + .../reverse.iter.ops/nothing_to_do.pass.cpp | 12 + .../reverse.iter.cons/default.pass.cpp | 44 + .../reverse.iter.cons/iter.fail.cpp | 31 + .../reverse.iter.cons/iter.pass.cpp | 46 + .../reverse_iterator.fail.cpp | 38 + .../reverse_iterator.pass.cpp | 54 + .../tested_elsewhere.pass.cpp | 12 + .../make_reverse_iterator.pass.cpp | 51 + .../reverse.iter.op!=/test.pass.cpp | 57 + .../reverse.iter.op++/post.pass.cpp | 53 + .../reverse.iter.op++/pre.pass.cpp | 54 + .../reverse.iter.op+/difference_type.pass.cpp | 52 + .../difference_type.pass.cpp | 49 + .../reverse.iter.op--/post.pass.cpp | 53 + .../reverse.iter.op--/pre.pass.cpp | 54 + .../reverse.iter.op-/difference_type.pass.cpp | 52 + .../difference_type.pass.cpp | 49 + .../reverse.iter.op.star/op_star.pass.cpp | 62 + .../reverse_iterator.fail.cpp | 39 + .../reverse_iterator.pass.cpp | 59 + .../reverse.iter.op==/test.pass.cpp | 58 + .../reverse.iter.opdiff/test.pass.cpp | 57 + .../reverse.iter.opgt/test.pass.cpp | 57 + .../reverse.iter.opgt=/test.pass.cpp | 57 + .../difference_type.pass.cpp | 49 + .../reverse.iter.oplt/test.pass.cpp | 57 + .../reverse.iter.oplt=/test.pass.cpp | 57 + .../reverse.iter.opref/op_arrow.pass.cpp | 119 + .../difference_type.pass.cpp | 53 + .../nothing_to_do.pass.cpp | 12 + .../reverse.iterator/types.pass.cpp | 61 + .../istream.iterator.cons/copy.pass.cpp | 40 + .../istream.iterator.cons/default.fail.cpp | 32 + .../istream.iterator.cons/default.pass.cpp | 65 + .../istream.iterator.cons/istream.pass.cpp | 30 + .../istream.iterator.ops/arrow.pass.cpp | 39 + .../istream.iterator.ops/dereference.pass.cpp | 34 + .../istream.iterator.ops/equal.pass.cpp | 55 + .../post_increment.pass.cpp | 32 + .../pre_increment.pass.cpp | 29 + .../istream.iterator/types.pass.cpp | 86 + .../istreambuf.iterator.cons/default.pass.cpp | 45 + .../istreambuf.iterator.cons/istream.pass.cpp | 42 + .../istreambuf.iterator.cons/proxy.pass.cpp | 36 + .../streambuf.pass.cpp | 50 + .../istreambuf.iterator_equal/equal.pass.cpp | 100 + .../not_equal.pass.cpp | 102 + .../dereference.pass.cpp | 40 + .../istreambuf.iterator_op==/equal.pass.cpp | 102 + .../post_increment.pass.cpp | 38 + .../pre_increment.pass.cpp | 39 + .../istreambuf.iterator_proxy/proxy.pass.cpp | 44 + .../istreambuf.iterator/types.pass.cpp | 69 + .../iterator.range/begin_array.pass.cpp | 24 + .../iterator.range/begin_const.pass.cpp | 23 + .../iterator.range/begin_non_const.pass.cpp | 25 + .../iterator.range/end_array.pass.cpp | 24 + .../iterator.range/end_const.pass.cpp | 23 + .../iterator.range/end_non_const.pass.cpp | 23 + .../stream.iterators/nothing_to_do.pass.cpp | 12 + .../ostream.iterator.cons.des/copy.pass.cpp | 27 + .../ostream.pass.cpp | 39 + .../ostream_delim.pass.cpp | 45 + .../ostream.iterator.ops/assign_t.pass.cpp | 56 + .../ostream.iterator.ops/dereference.pass.cpp | 26 + .../ostream.iterator.ops/increment.pass.cpp | 29 + .../ostream.iterator/types.pass.cpp | 58 + .../ostreambuf.iter.cons/ostream.pass.cpp | 32 + .../ostreambuf.iter.cons/streambuf.pass.cpp | 32 + .../ostreambuf.iter.ops/assign_c.pass.cpp | 39 + .../ostreambuf.iter.ops/deref.pass.cpp | 34 + .../ostreambuf.iter.ops/failed.pass.cpp | 43 + .../ostreambuf.iter.ops/increment.pass.cpp | 39 + .../ostreambuf.iterator/types.pass.cpp | 62 + .../common_comparison_category.pass.cpp | 93 + .../cmp/cmp.partialord/partialord.pass.cpp | 164 + .../cmp/cmp.strongeq/cmp.strongeq.pass.cpp | 96 + .../cmp/cmp.strongord/strongord.pass.cpp | 212 + .../cmp/cmp.weakeq/cmp.weakeq.pass.cpp | 70 + .../cmp/cmp.weakord/weakord.pass.cpp | 169 + .../cstdint/cstdint.syn/cstdint.pass.cpp | 292 + .../language.support/nothing_to_do.pass.cpp | 12 + .../support.dynamic/align_val_t.pass.cpp | 34 + .../alloc.errors/bad.alloc/bad_alloc.pass.cpp | 27 + .../bad_array_new_length.pass.cpp | 27 + .../new.handler/new_handler.pass.cpp | 23 + .../alloc.errors/nothing_to_do.pass.cpp | 12 + .../set.new.handler/get_new_handler.pass.cpp | 25 + .../set.new.handler/set_new_handler.pass.cpp | 22 + .../delete_align_val_t_replace.pass.cpp | 112 + .../new.delete.array/new_align_val_t.pass.cpp | 102 + .../new_align_val_t_nothrow.pass.cpp | 104 + .../new_align_val_t_nothrow_replace.pass.cpp | 107 + .../new_align_val_t_replace.pass.cpp | 89 + .../new.delete.array/new_array.pass.cpp | 64 + .../new_array_nothrow.pass.cpp | 63 + .../new_array_nothrow_replace.pass.cpp | 58 + .../new_array_replace.pass.cpp | 59 + .../new.delete.array/new_size.sh.cpp | 26 + .../new.delete.array/new_size_align.sh.cpp | 26 + .../new_size_align_nothrow.sh.cpp | 26 + .../new.delete.array/new_size_nothrow.sh.cpp | 26 + .../sized_delete_array11.pass.cpp | 70 + .../sized_delete_array14.pass.cpp | 74 + ..._array_calls_unsized_delete_array.pass.cpp | 60 + ...zed_delete_array_fsizeddeallocation.sh.cpp | 88 + .../not_testable.pass.cpp | 12 + .../new.delete.placement/new.pass.cpp | 30 + .../new.delete.placement/new_array.pass.cpp | 34 + .../new_array_ptr.fail.cpp | 26 + .../new.delete.placement/new_ptr.fail.cpp | 26 + .../delete_align_val_t_replace.pass.cpp | 111 + .../new.delete/new.delete.single/new.pass.cpp | 62 + .../new_align_val_t.pass.cpp | 102 + .../new_align_val_t_nothrow.pass.cpp | 104 + .../new_align_val_t_nothrow_replace.pass.cpp | 109 + .../new_align_val_t_replace.pass.cpp | 89 + .../new.delete.single/new_nothrow.pass.cpp | 60 + .../new_nothrow_replace.pass.cpp | 58 + .../new.delete.single/new_replace.pass.cpp | 57 + .../new.delete.single/new_size.fail.cpp | 25 + .../new.delete.single/new_size_align.sh.cpp | 26 + .../new_size_align_nothrow.sh.cpp | 26 + .../new_size_nothrow.fail.cpp | 25 + .../new.delete.single/sized_delete11.pass.cpp | 60 + .../new.delete.single/sized_delete14.pass.cpp | 65 + ...sized_delete_calls_unsized_delete.pass.cpp | 49 + .../sized_delete_fsizeddeallocation.sh.cpp | 78 + .../new.delete/nothing_to_do.pass.cpp | 12 + .../ptr.launder/launder.nodiscard.fail.cpp | 27 + .../ptr.launder/launder.pass.cpp | 35 + .../ptr.launder/launder.types.fail.cpp | 34 + .../bad.exception/bad_exception.pass.cpp | 27 + .../except.nested/assign.pass.cpp | 63 + .../except.nested/ctor_copy.pass.cpp | 61 + .../except.nested/ctor_default.pass.cpp | 59 + .../except.nested/rethrow_if_nested.pass.cpp | 135 + .../except.nested/rethrow_nested.pass.cpp | 71 + .../except.nested/throw_with_nested.pass.cpp | 132 + .../nothing_to_do.pass.cpp | 12 + .../set.terminate/get_terminate.pass.cpp | 25 + .../set.terminate/set_terminate.pass.cpp | 23 + .../terminate_handler.pass.cpp | 23 + .../terminate/terminate.pass.cpp | 26 + .../exception/exception.pass.cpp | 25 + .../propagation/current_exception.pass.cpp | 274 + .../propagation/exception_ptr.pass.cpp | 34 + .../propagation/make_exception_ptr.pass.cpp | 56 + .../propagation/rethrow_exception.pass.cpp | 64 + .../uncaught/uncaught_exception.pass.cpp | 46 + .../uncaught/uncaught_exceptions.pass.cpp | 62 + .../support.general/nothing_to_do.pass.cpp | 12 + .../support.initlist/include_cxx03.pass.cpp | 18 + .../support.initlist.access/access.pass.cpp | 62 + .../support.initlist.cons/default.pass.cpp | 32 + .../support.initlist.range/begin_end.pass.cpp | 60 + .../support.initlist/types.pass.cpp | 37 + .../support.limits/c.limits/cfloat.pass.cpp | 184 + .../support.limits/c.limits/climits.pass.cpp | 92 + .../limits/denorm.style/check_values.pass.cpp | 38 + .../limits/is_specialized.pass.cpp | 71 + .../const_data_members.pass.cpp | 199 + .../denorm_min.pass.cpp | 64 + .../numeric.limits.members/digits.pass.cpp | 53 + .../numeric.limits.members/digits10.pass.cpp | 57 + .../numeric.limits.members/epsilon.pass.cpp | 54 + .../has_denorm.pass.cpp | 52 + .../has_denorm_loss.pass.cpp | 52 + .../has_infinity.pass.cpp | 52 + .../has_quiet_NaN.pass.cpp | 52 + .../has_signaling_NaN.pass.cpp | 52 + .../numeric.limits.members/infinity.pass.cpp | 58 + .../is_bounded.pass.cpp | 52 + .../numeric.limits.members/is_exact.pass.cpp | 52 + .../numeric.limits.members/is_iec559.pass.cpp | 56 + .../is_integer.pass.cpp | 52 + .../numeric.limits.members/is_modulo.pass.cpp | 52 + .../numeric.limits.members/is_signed.pass.cpp | 52 + .../numeric.limits.members/lowest.pass.cpp | 60 + .../numeric.limits.members/max.pass.cpp | 60 + .../max_digits10.pass.cpp | 53 + .../max_exponent.pass.cpp | 53 + .../max_exponent10.pass.cpp | 53 + .../numeric.limits.members/min.pass.cpp | 60 + .../min_exponent.pass.cpp | 53 + .../min_exponent10.pass.cpp | 53 + .../numeric.limits.members/quiet_NaN.pass.cpp | 73 + .../numeric.limits.members/radix.pass.cpp | 53 + .../round_error.pass.cpp | 54 + .../round_style.pass.cpp | 52 + .../signaling_NaN.pass.cpp | 73 + .../tinyness_before.pass.cpp | 52 + .../numeric.limits.members/traps.pass.cpp | 59 + .../limits/numeric.limits/default.pass.cpp | 83 + .../numeric.special/nothing_to_do.pass.cpp | 12 + .../limits/round.style/check_values.pass.cpp | 34 + .../support.limits/nothing_to_do.pass.cpp | 12 + .../support.limits/version.pass.cpp | 17 + .../support.rtti/bad.cast/bad_cast.pass.cpp | 27 + .../bad.typeid/bad_typeid.pass.cpp | 27 + .../support.rtti/type.info/type_info.pass.cpp | 40 + .../type.info/type_info_hash.pass.cpp | 23 + .../support.runtime/csetjmp.pass.cpp | 25 + .../support.runtime/csignal.pass.cpp | 58 + .../support.runtime/cstdarg.pass.cpp | 38 + .../support.runtime/cstdbool.pass.cpp | 32 + .../support.runtime/cstdlib.pass.cpp | 114 + .../support.runtime/ctime.pass.cpp | 62 + .../support.start.term/quick_exit.pass.cpp | 23 + .../quick_exit_check1.fail.cpp | 26 + .../quick_exit_check2.fail.cpp | 25 + .../support.types/byte.pass.cpp | 34 + .../support.types/byteops/and.assign.pass.cpp | 39 + .../support.types/byteops/and.pass.cpp | 31 + .../byteops/enum_direct_init.pass.cpp | 21 + .../byteops/lshift.assign.fail.cpp | 31 + .../byteops/lshift.assign.pass.cpp | 36 + .../support.types/byteops/lshift.fail.cpp | 23 + .../support.types/byteops/lshift.pass.cpp | 30 + .../support.types/byteops/not.pass.cpp | 27 + .../support.types/byteops/or.assign.pass.cpp | 40 + .../support.types/byteops/or.pass.cpp | 31 + .../byteops/rshift.assign.fail.cpp | 31 + .../byteops/rshift.assign.pass.cpp | 35 + .../support.types/byteops/rshift.fail.cpp | 23 + .../support.types/byteops/rshift.pass.cpp | 37 + .../support.types/byteops/to_integer.fail.cpp | 23 + .../support.types/byteops/to_integer.pass.cpp | 31 + .../support.types/byteops/xor.assign.pass.cpp | 39 + .../support.types/byteops/xor.pass.cpp | 31 + .../support.types/max_align_t.pass.cpp | 44 + .../support.types/null.pass.cpp | 18 + .../support.types/nullptr_t.pass.cpp | 107 + .../nullptr_t_integral_cast.fail.cpp | 17 + .../nullptr_t_integral_cast.pass.cpp | 24 + .../support.types/offsetof.pass.cpp | 28 + .../support.types/ptrdiff_t.pass.cpp | 27 + .../support.types/size_t.pass.cpp | 27 + .../localization/c.locales/clocale.pass.cpp | 55 + .../locale.collate.byname/compare.pass.cpp | 72 + .../locale.collate.byname/hash.pass.cpp | 43 + .../locale.collate.byname/transform.pass.cpp | 54 + .../locale.collate.byname/types.pass.cpp | 47 + .../locale.collate/ctor.pass.cpp | 67 + .../locale.collate.members/compare.pass.cpp | 49 + .../locale.collate.members/hash.pass.cpp | 39 + .../locale.collate.members/transform.pass.cpp | 33 + .../tested_elsewhere.pass.cpp | 12 + .../locale.collate/types.pass.cpp | 51 + .../category.collate/nothing_to_do.pass.cpp | 12 + .../category.ctype/ctype_base.pass.cpp | 78 + .../facet.ctype.char.dtor/dtor.pass.cpp | 40 + .../facet.ctype.char.members/ctor.pass.cpp | 50 + .../facet.ctype.char.members/is_1.pass.cpp | 59 + .../facet.ctype.char.members/is_many.pass.cpp | 118 + .../narrow_1.pass.cpp | 33 + .../narrow_many.pass.cpp | 38 + .../facet.ctype.char.members/scan_is.pass.cpp | 44 + .../scan_not.pass.cpp | 44 + .../facet.ctype.char.members/table.pass.cpp | 33 + .../tolower_1.pass.cpp | 33 + .../tolower_many.pass.cpp | 36 + .../toupper_1.pass.cpp | 33 + .../toupper_many.pass.cpp | 36 + .../facet.ctype.char.members/widen_1.pass.cpp | 33 + .../widen_many.pass.cpp | 38 + .../classic_table.pass.cpp | 59 + .../tested_elsewhere.pass.cpp | 12 + .../facet.ctype.special/types.pass.cpp | 39 + .../locale.codecvt.byname/ctor_char.pass.cpp | 72 + .../ctor_char16_t.pass.cpp | 70 + .../ctor_char32_t.pass.cpp | 70 + .../ctor_wchar_t.pass.cpp | 74 + .../locale.codecvt/codecvt_base.pass.cpp | 27 + .../locale.codecvt/ctor_char.pass.cpp | 52 + .../locale.codecvt/ctor_char16_t.pass.cpp | 58 + .../locale.codecvt/ctor_char32_t.pass.cpp | 58 + .../locale.codecvt/ctor_wchar_t.pass.cpp | 52 + .../char16_t_always_noconv.pass.cpp | 26 + .../char16_t_encoding.pass.cpp | 26 + .../char16_t_in.pass.cpp | 40 + .../char16_t_length.pass.cpp | 32 + .../char16_t_max_length.pass.cpp | 26 + .../char16_t_out.pass.cpp | 45 + .../char16_t_unshift.pass.cpp | 33 + .../char32_t_always_noconv.pass.cpp | 26 + .../char32_t_encoding.pass.cpp | 26 + .../char32_t_in.pass.cpp | 40 + .../char32_t_length.pass.cpp | 32 + .../char32_t_max_length.pass.cpp | 26 + .../char32_t_out.pass.cpp | 45 + .../char32_t_unshift.pass.cpp | 33 + .../char_always_noconv.pass.cpp | 26 + .../char_encoding.pass.cpp | 26 + .../locale.codecvt.members/char_in.pass.cpp | 38 + .../char_length.pass.cpp | 32 + .../char_max_length.pass.cpp | 26 + .../locale.codecvt.members/char_out.pass.cpp | 38 + .../char_unshift.pass.cpp | 33 + .../utf_sanity_check.pass.cpp | 127 + .../wchar_t_always_noconv.pass.cpp | 26 + .../wchar_t_encoding.pass.cpp | 26 + .../wchar_t_in.pass.cpp | 43 + .../wchar_t_length.pass.cpp | 32 + .../wchar_t_max_length.pass.cpp | 26 + .../wchar_t_out.pass.cpp | 70 + .../wchar_t_unshift.pass.cpp | 35 + .../tested_elsewhere.pass.cpp | 12 + .../locale.codecvt/types_char.pass.cpp | 41 + .../locale.codecvt/types_char16_t.pass.cpp | 41 + .../locale.codecvt/types_char32_t.pass.cpp | 41 + .../locale.codecvt/types_wchar_t.pass.cpp | 41 + .../locale.ctype.byname/is_1.pass.cpp | 112 + .../locale.ctype.byname/is_many.pass.cpp | 247 + .../locale.ctype.byname/mask.pass.cpp | 53 + .../locale.ctype.byname/narrow_1.pass.cpp | 56 + .../locale.ctype.byname/narrow_many.pass.cpp | 64 + .../locale.ctype.byname/scan_is.pass.cpp | 71 + .../locale.ctype.byname/scan_not.pass.cpp | 71 + .../locale.ctype.byname/tolower_1.pass.cpp | 92 + .../locale.ctype.byname/tolower_many.pass.cpp | 98 + .../locale.ctype.byname/toupper_1.pass.cpp | 94 + .../locale.ctype.byname/toupper_many.pass.cpp | 98 + .../locale.ctype.byname/types.pass.cpp | 60 + .../locale.ctype.byname/widen_1.pass.cpp | 65 + .../locale.ctype.byname/widen_many.pass.cpp | 71 + .../category.ctype/locale.ctype/ctor.pass.cpp | 51 + .../locale.ctype.members/is_1.pass.cpp | 59 + .../locale.ctype.members/is_many.pass.cpp | 118 + .../locale.ctype.members/narrow_1.pass.cpp | 33 + .../locale.ctype.members/narrow_many.pass.cpp | 38 + .../locale.ctype.members/scan_is.pass.cpp | 44 + .../locale.ctype.members/scan_not.pass.cpp | 44 + .../locale.ctype.members/tolower_1.pass.cpp | 33 + .../tolower_many.pass.cpp | 36 + .../locale.ctype.members/toupper_1.pass.cpp | 33 + .../toupper_many.pass.cpp | 36 + .../locale.ctype.members/widen_1.pass.cpp | 33 + .../locale.ctype.members/widen_many.pass.cpp | 38 + .../tested_elsewhere.pass.cpp | 12 + .../locale.ctype/types.pass.cpp | 39 + .../nothing_to_do.pass.cpp | 12 + .../locale.messages/ctor.pass.cpp | 52 + .../not_testable.pass.cpp | 34 + .../tested_elsewhere.pass.cpp | 12 + .../locale.messages/messages_base.pass.cpp | 24 + .../locale.messages/types.pass.cpp | 34 + .../category.messages/nothing_to_do.pass.cpp | 12 + .../locale.money.get/ctor.pass.cpp | 52 + .../get_long_double_en_US.pass.cpp | 723 + .../get_long_double_fr_FR.pass.cpp | 754 + .../get_long_double_ru_RU.pass.cpp | 736 + .../get_long_double_zh_CN.pass.cpp | 726 + .../get_string_en_US.pass.cpp | 731 + .../tested_elsewhere.pass.cpp | 12 + .../locale.money.get/types.pass.cpp | 34 + .../locale.money.put/ctor.pass.cpp | 52 + .../put_long_double_en_US.pass.cpp | 494 + .../put_long_double_fr_FR.pass.cpp | 525 + .../put_long_double_ru_RU.pass.cpp | 502 + .../put_long_double_zh_CN.pass.cpp | 496 + .../put_string_en_US.pass.cpp | 494 + .../tested_elsewhere.pass.cpp | 12 + .../locale.money.put/types.pass.cpp | 34 + .../curr_symbol.pass.cpp | 166 + .../decimal_point.pass.cpp | 157 + .../frac_digits.pass.cpp | 145 + .../grouping.pass.cpp | 150 + .../neg_format.pass.cpp | 227 + .../negative_sign.pass.cpp | 145 + .../pos_format.pass.cpp | 227 + .../positive_sign.pass.cpp | 145 + .../thousands_sep.pass.cpp | 171 + .../locale.moneypunct/ctor.pass.cpp | 52 + .../curr_symbol.pass.cpp | 75 + .../decimal_point.pass.cpp | 75 + .../frac_digits.pass.cpp | 75 + .../grouping.pass.cpp | 75 + .../neg_format.pass.cpp | 88 + .../negative_sign.pass.cpp | 76 + .../pos_format.pass.cpp | 88 + .../positive_sign.pass.cpp | 75 + .../thousands_sep.pass.cpp | 75 + .../tested_elsewhere.pass.cpp | 12 + .../locale.moneypunct/money_base.pass.cpp | 33 + .../locale.moneypunct/types.pass.cpp | 48 + .../category.monetary/nothing_to_do.pass.cpp | 12 + .../locale.nm.put/ctor.pass.cpp | 52 + .../facet.num.put.members/put_bool.pass.cpp | 100 + .../facet.num.put.members/put_double.pass.cpp | 17890 +++++++++++ .../facet.num.put.members/put_long.pass.cpp | 344 + .../put_long_double.pass.cpp | 26250 ++++++++++++++++ .../put_long_long.pass.cpp | 344 + .../put_pointer.pass.cpp | 49 + .../put_unsigned_long.pass.cpp | 347 + .../put_unsigned_long_long.pass.cpp | 344 + .../tested_elsewhere.pass.cpp | 12 + .../locale.nm.put/types.pass.cpp | 32 + .../locale.num.get/ctor.pass.cpp | 52 + .../facet.num.get.members/get_bool.pass.cpp | 230 + .../facet.num.get.members/get_double.pass.cpp | 282 + .../facet.num.get.members/get_float.pass.cpp | 212 + .../facet.num.get.members/get_long.pass.cpp | 519 + .../get_long_double.pass.cpp | 271 + .../get_long_long.pass.cpp | 106 + .../get_pointer.pass.cpp | 61 + .../get_unsigned_int.pass.cpp | 83 + .../get_unsigned_long.pass.cpp | 83 + .../get_unsigned_long_long.pass.cpp | 83 + .../get_unsigned_short.pass.cpp | 83 + .../test_min_max.pass.cpp | 65 + .../test_neg_one.pass.cpp | 164 + .../tested_elsewhere.pass.cpp | 12 + .../locale.num.get/types.pass.cpp | 32 + .../category.numeric/nothing_to_do.pass.cpp | 12 + .../date_order.pass.cpp | 55 + .../date_order_wide.pass.cpp | 55 + .../locale.time.get.byname/get_date.pass.cpp | 99 + .../get_date_wide.pass.cpp | 98 + .../get_monthname.pass.cpp | 75 + .../get_monthname_wide.pass.cpp | 84 + .../locale.time.get.byname/get_one.pass.cpp | 168 + .../get_one_wide.pass.cpp | 170 + .../locale.time.get.byname/get_time.pass.cpp | 94 + .../get_time_wide.pass.cpp | 94 + .../get_weekday.pass.cpp | 91 + .../get_weekday_wide.pass.cpp | 89 + .../locale.time.get.byname/get_year.pass.cpp | 85 + .../get_year_wide.pass.cpp | 85 + .../locale.time.get/ctor.pass.cpp | 52 + .../date_order.pass.cpp | 34 + .../locale.time.get.members/get_date.pass.cpp | 51 + .../get_date_wide.pass.cpp | 51 + .../locale.time.get.members/get_many.pass.cpp | 68 + .../get_monthname.pass.cpp | 265 + .../get_monthname_wide.pass.cpp | 265 + .../locale.time.get.members/get_one.pass.cpp | 305 + .../locale.time.get.members/get_time.pass.cpp | 117 + .../get_time_wide.pass.cpp | 117 + .../get_weekday.pass.cpp | 220 + .../get_weekday_wide.pass.cpp | 220 + .../locale.time.get.members/get_year.pass.cpp | 138 + .../tested_elsewhere.pass.cpp | 12 + .../locale.time.get/time_base.pass.cpp | 30 + .../locale.time.get/types.pass.cpp | 41 + .../locale.time.put.byname/put1.pass.cpp | 78 + .../locale.time.put/ctor.pass.cpp | 52 + .../locale.time.put.members/put1.pass.cpp | 61 + .../locale.time.put.members/put2.pass.cpp | 332 + .../tested_elsewhere.pass.cpp | 12 + .../locale.time.put/types.pass.cpp | 32 + .../category.time/nothing_to_do.pass.cpp | 12 + .../decimal_point.pass.cpp | 65 + .../locale.numpunct.byname/grouping.pass.cpp | 71 + .../thousands_sep.pass.cpp | 85 + .../locale.numpunct/ctor.pass.cpp | 66 + .../decimal_point.pass.cpp | 32 + .../facet.numpunct.members/falsename.pass.cpp | 32 + .../facet.numpunct.members/grouping.pass.cpp | 32 + .../thousands_sep.pass.cpp | 32 + .../facet.numpunct.members/truename.pass.cpp | 32 + .../tested_elsewhere.pass.cpp | 12 + .../locale.numpunct/types.pass.cpp | 50 + .../facet.numpunct/nothing_to_do.pass.cpp | 12 + .../facets.examples/nothing_to_do.pass.cpp | 12 + .../locale.stdcvt/codecvt_mode.pass.cpp | 29 + .../locale.stdcvt/codecvt_utf16.pass.cpp | 42 + .../codecvt_utf16_always_noconv.pass.cpp | 45 + .../codecvt_utf16_encoding.pass.cpp | 45 + .../locale.stdcvt/codecvt_utf16_in.pass.cpp | 739 + .../codecvt_utf16_length.pass.cpp | 449 + .../codecvt_utf16_max_length.pass.cpp | 63 + .../locale.stdcvt/codecvt_utf16_out.pass.cpp | 353 + .../codecvt_utf16_unshift.pass.cpp | 56 + .../locale.stdcvt/codecvt_utf8.pass.cpp | 42 + .../codecvt_utf8_always_noconv.pass.cpp | 45 + .../codecvt_utf8_encoding.pass.cpp | 45 + .../locale.stdcvt/codecvt_utf8_in.pass.cpp | 360 + .../codecvt_utf8_length.pass.cpp | 244 + .../codecvt_utf8_max_length.pass.cpp | 63 + .../locale.stdcvt/codecvt_utf8_out.pass.cpp | 326 + .../codecvt_utf8_unshift.pass.cpp | 56 + .../codecvt_utf8_utf16_always_noconv.pass.cpp | 45 + .../codecvt_utf8_utf16_encoding.pass.cpp | 45 + .../codecvt_utf8_utf16_in.pass.cpp | 244 + .../codecvt_utf8_utf16_length.pass.cpp | 235 + .../codecvt_utf8_utf16_max_length.pass.cpp | 63 + .../codecvt_utf8_utf16_out.pass.cpp | 309 + .../codecvt_utf8_utf16_unshift.pass.cpp | 56 + .../locale.syn/nothing_to_do.pass.cpp | 12 + .../classification/isalnum.pass.cpp | 31 + .../classification/isalpha.pass.cpp | 31 + .../classification/iscntrl.pass.cpp | 31 + .../classification/isdigit.pass.cpp | 31 + .../classification/isgraph.pass.cpp | 31 + .../classification/islower.pass.cpp | 31 + .../classification/isprint.pass.cpp | 31 + .../classification/ispunct.pass.cpp | 31 + .../classification/isspace.pass.cpp | 31 + .../classification/isupper.pass.cpp | 31 + .../classification/isxdigit.pass.cpp | 31 + .../conversions.buffer/ctor.pass.cpp | 59 + .../conversions.buffer/lit.local.cfg | 2 + .../conversions.buffer/overflow.pass.cpp | 100 + .../conversions.buffer/pbackfail.pass.cpp | 59 + .../conversions.buffer/rdbuf.pass.cpp | 31 + .../conversions.buffer/seekoff.pass.cpp | 58 + .../conversions.buffer/state.pass.cpp | 29 + .../conversions.buffer/test.pass.cpp | 36 + .../conversions.buffer/underflow.dat | 1 + .../conversions.buffer/underflow.pass.cpp | 84 + .../conversions.buffer/underflow_utf8.dat | 1 + .../conversions.character/tolower.pass.cpp | 31 + .../conversions.character/toupper.pass.cpp | 31 + .../conversions.string/converted.pass.cpp | 65 + .../conversions.string/ctor_codecvt.pass.cpp | 40 + .../ctor_codecvt_state.pass.cpp | 28 + .../conversions.string/ctor_copy.pass.cpp | 31 + .../ctor_err_string.pass.cpp | 74 + .../conversions.string/from_bytes.pass.cpp | 72 + .../conversions.string/state.pass.cpp | 26 + .../conversions.string/to_bytes.pass.cpp | 72 + .../conversions.string/types.pass.cpp | 35 + .../conversions/nothing_to_do.pass.cpp | 12 + .../locale.convenience/nothing_to_do.pass.cpp | 12 + .../has_facet.pass.cpp | 32 + .../use_facet.pass.cpp | 57 + .../locale/locale.cons/assign.pass.cpp | 71 + .../locale/locale.cons/char_pointer.pass.cpp | 95 + .../locales/locale/locale.cons/copy.pass.cpp | 68 + .../locale/locale.cons/default.pass.cpp | 77 + .../locale_char_pointer_cat.pass.cpp | 72 + .../locale.cons/locale_facetptr.pass.cpp | 89 + .../locale.cons/locale_locale_cat.pass.cpp | 72 + .../locale.cons/locale_string_cat.pass.cpp | 73 + .../locale/locale.cons/string.pass.cpp | 73 + .../locale/locale.members/combine.pass.cpp | 99 + .../locale/locale.members/name.pass.cpp | 31 + .../locale/locale.operators/compare.pass.cpp | 34 + .../locale/locale.operators/eq.pass.cpp | 86 + .../locale/locale.statics/classic.pass.cpp | 59 + .../locale/locale.statics/global.pass.cpp | 65 + .../locale.category/category.pass.cpp | 59 + .../locale.facet/tested_elsewhere.pass.cpp | 12 + .../locale.id/tested_elsewhere.pass.cpp | 12 + .../locale.types/nothing_to_do.pass.cpp | 12 + .../locales/locale/nothing_to_do.pass.cpp | 12 + .../locales/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + test/std/nothing_to_do.pass.cpp | 13 + test/std/numerics/c.math/cmath.pass.cpp | 1589 + test/std/numerics/c.math/ctgmath.pass.cpp | 20 + test/std/numerics/c.math/tgmath_h.pass.cpp | 16 + .../numerics/cfenv/cfenv.syn/cfenv.pass.cpp | 78 + test/std/numerics/complex.number/cases.h | 230 + .../complex.number/ccmplx/ccomplex.pass.cpp | 18 + .../cmplx.over/UDT_is_rejected.fail.cpp | 74 + .../complex.number/cmplx.over/arg.pass.cpp | 55 + .../complex.number/cmplx.over/conj.pass.cpp | 66 + .../complex.number/cmplx.over/imag.pass.cpp | 68 + .../complex.number/cmplx.over/norm.pass.cpp | 55 + .../complex.number/cmplx.over/pow.pass.cpp | 104 + .../complex.number/cmplx.over/proj.pass.cpp | 66 + .../complex.number/cmplx.over/real.pass.cpp | 68 + .../complex.literals/literals.pass.cpp | 51 + .../complex.literals/literals1.fail.cpp | 20 + .../complex.literals/literals1.pass.cpp | 41 + .../complex.literals/literals2.pass.cpp | 41 + .../assignment_complex.pass.cpp | 48 + .../assignment_scalar.pass.cpp | 37 + .../divide_equal_complex.pass.cpp | 53 + .../divide_equal_scalar.pass.cpp | 44 + .../minus_equal_complex.pass.cpp | 52 + .../minus_equal_scalar.pass.cpp | 40 + .../plus_equal_complex.pass.cpp | 52 + .../plus_equal_scalar.pass.cpp | 40 + .../times_equal_complex.pass.cpp | 52 + .../times_equal_scalar.pass.cpp | 44 + .../complex.members/construct.pass.cpp | 72 + .../complex.members/real_imag.pass.cpp | 66 + .../complex_divide_complex.pass.cpp | 159 + .../complex_divide_scalar.pass.cpp | 41 + .../complex_equals_complex.pass.cpp | 62 + .../complex_equals_scalar.pass.cpp | 83 + .../complex_minus_complex.pass.cpp | 49 + .../complex.ops/complex_minus_scalar.pass.cpp | 49 + .../complex_not_equals_complex.pass.cpp | 64 + .../complex_not_equals_scalar.pass.cpp | 83 + .../complex.ops/complex_plus_complex.pass.cpp | 49 + .../complex.ops/complex_plus_scalar.pass.cpp | 49 + .../complex_times_complex.pass.cpp | 161 + .../complex.ops/complex_times_scalar.pass.cpp | 41 + .../scalar_divide_complex.pass.cpp | 41 + .../scalar_equals_complex.pass.cpp | 83 + .../complex.ops/scalar_minus_complex.pass.cpp | 49 + .../scalar_not_equals_complex.pass.cpp | 83 + .../complex.ops/scalar_plus_complex.pass.cpp | 49 + .../complex.ops/scalar_times_complex.pass.cpp | 41 + .../complex.ops/stream_input.pass.cpp | 101 + .../complex.ops/stream_output.pass.cpp | 26 + .../complex.ops/unary_minus.pass.cpp | 36 + .../complex.ops/unary_plus.pass.cpp | 36 + .../double_float_explicit.pass.cpp | 39 + .../double_float_implicit.pass.cpp | 39 + .../double_long_double_explicit.pass.cpp | 39 + .../double_long_double_implicit.fail.cpp | 27 + .../float_double_explicit.pass.cpp | 39 + .../float_double_implicit.fail.cpp | 27 + .../float_long_double_explicit.pass.cpp | 39 + .../float_long_double_implicit.fail.cpp | 27 + .../long_double_double_explicit.pass.cpp | 39 + .../long_double_double_implicit.pass.cpp | 39 + .../long_double_float_explicit.pass.cpp | 39 + .../long_double_float_implicit.pass.cpp | 39 + .../complex.synopsis/nothing_to_do.pass.cpp | 12 + .../complex.transcendentals/acos.pass.cpp | 139 + .../complex.transcendentals/acosh.pass.cpp | 150 + .../complex.transcendentals/asin.pass.cpp | 118 + .../complex.transcendentals/asinh.pass.cpp | 127 + .../complex.transcendentals/atan.pass.cpp | 67 + .../complex.transcendentals/atanh.pass.cpp | 131 + .../complex.transcendentals/cos.pass.cpp | 66 + .../complex.transcendentals/cosh.pass.cpp | 116 + .../complex.transcendentals/exp.pass.cpp | 114 + .../complex.transcendentals/log.pass.cpp | 131 + .../complex.transcendentals/log10.pass.cpp | 65 + .../pow_complex_complex.pass.cpp | 70 + .../pow_complex_scalar.pass.cpp | 68 + .../pow_scalar_complex.pass.cpp | 68 + .../complex.transcendentals/sin.pass.cpp | 67 + .../complex.transcendentals/sinh.pass.cpp | 117 + .../complex.transcendentals/sqrt.pass.cpp | 109 + .../complex.transcendentals/tan.pass.cpp | 68 + .../complex.transcendentals/tanh.pass.cpp | 99 + .../complex.value.ops/abs.pass.cpp | 63 + .../complex.value.ops/arg.pass.cpp | 135 + .../complex.value.ops/conj.pass.cpp | 41 + .../complex.value.ops/imag.pass.cpp | 32 + .../complex.value.ops/norm.pass.cpp | 63 + .../complex.value.ops/polar.pass.cpp | 112 + .../complex.value.ops/proj.pass.cpp | 71 + .../complex.value.ops/real.pass.cpp | 32 + .../complex.number/complex/types.pass.cpp | 36 + .../numerics/complex.number/layout.pass.cpp | 36 + test/std/numerics/nothing_to_do.pass.cpp | 12 + .../gslice.access/tested_elsewhere.pass.cpp | 12 + .../class.gslice/gslice.cons/default.pass.cpp | 25 + .../gslice.cons/start_size_stride.pass.cpp | 38 + .../class.gslice/nothing_to_do.pass.cpp | 12 + .../class.slice/cons.slice/default.pass.cpp | 25 + .../cons.slice/start_size_stride.pass.cpp | 25 + .../class.slice/nothing_to_do.pass.cpp | 12 + .../slice.access/tested_elsewhere.pass.cpp | 12 + .../template.gslice.array/default.fail.cpp | 22 + .../gslice.array.assign/gslice_array.pass.cpp | 81 + .../gslice.array.assign/valarray.pass.cpp | 77 + .../addition.pass.cpp | 77 + .../gslice.array.comp.assign/and.pass.cpp | 77 + .../gslice.array.comp.assign/divide.pass.cpp | 77 + .../gslice.array.comp.assign/modulo.pass.cpp | 77 + .../multiply.pass.cpp | 77 + .../gslice.array.comp.assign/or.pass.cpp | 77 + .../shift_left.pass.cpp | 77 + .../shift_right.pass.cpp | 77 + .../subtraction.pass.cpp | 77 + .../gslice.array.comp.assign/xor.pass.cpp | 77 + .../gslice.array.fill/assign_value.pass.cpp | 74 + .../template.gslice.array/types.pass.cpp | 24 + .../template.indirect.array/default.fail.cpp | 22 + .../indirect_array.pass.cpp | 80 + .../indirect.array.assign/valarray.pass.cpp | 77 + .../addition.pass.cpp | 77 + .../indirect.array.comp.assign/and.pass.cpp | 77 + .../divide.pass.cpp | 77 + .../modulo.pass.cpp | 77 + .../multiply.pass.cpp | 77 + .../indirect.array.comp.assign/or.pass.cpp | 77 + .../shift_left.pass.cpp | 77 + .../shift_right.pass.cpp | 77 + .../subtraction.pass.cpp | 77 + .../indirect.array.comp.assign/xor.pass.cpp | 77 + .../indirect.array.fill/assign_value.pass.cpp | 74 + .../template.indirect.array/types.pass.cpp | 24 + .../template.mask.array/default.fail.cpp | 22 + .../mask.array.assign/mask_array.pass.cpp | 66 + .../mask.array.assign/valarray.pass.cpp | 49 + .../mask.array.comp.assign/addition.pass.cpp | 49 + .../mask.array.comp.assign/and.pass.cpp | 49 + .../mask.array.comp.assign/divide.pass.cpp | 49 + .../mask.array.comp.assign/modulo.pass.cpp | 49 + .../mask.array.comp.assign/multiply.pass.cpp | 49 + .../mask.array.comp.assign/or.pass.cpp | 49 + .../shift_left.pass.cpp | 49 + .../shift_right.pass.cpp | 49 + .../subtraction.pass.cpp | 49 + .../mask.array.comp.assign/xor.pass.cpp | 49 + .../mask.array.fill/assign_value.pass.cpp | 45 + .../template.mask.array/types.pass.cpp | 24 + .../template.slice.array/default.fail.cpp | 22 + .../slice.arr.assign/slice_array.pass.cpp | 54 + .../slice.arr.assign/valarray.pass.cpp | 43 + .../slice.arr.comp.assign/addition.pass.cpp | 43 + .../slice.arr.comp.assign/and.pass.cpp | 43 + .../slice.arr.comp.assign/divide.pass.cpp | 43 + .../slice.arr.comp.assign/modulo.pass.cpp | 43 + .../slice.arr.comp.assign/multiply.pass.cpp | 43 + .../slice.arr.comp.assign/or.pass.cpp | 43 + .../slice.arr.comp.assign/shift_left.pass.cpp | 43 + .../shift_right.pass.cpp | 43 + .../subtraction.pass.cpp | 43 + .../slice.arr.comp.assign/xor.pass.cpp | 43 + .../slice.arr.fill/assign_value.pass.cpp | 41 + .../template.slice.array/types.pass.cpp | 24 + .../numarray/template.valarray/types.pass.cpp | 26 + .../valarray.access/access.pass.cpp | 33 + .../valarray.access/const_access.pass.cpp | 31 + .../valarray.assign/copy_assign.pass.cpp | 86 + .../gslice_array_assign.pass.cpp | 58 + .../indirect_array_assign.pass.cpp | 58 + .../initializer_list_assign.pass.cpp | 84 + .../mask_array_assign.pass.cpp | 35 + .../valarray.assign/move_assign.pass.cpp | 64 + .../slice_array_assign.pass.cpp | 31 + .../valarray.assign/value_assign.pass.cpp | 32 + .../valarray.cassign/and_valarray.pass.cpp | 37 + .../valarray.cassign/and_value.pass.cpp | 34 + .../valarray.cassign/divide_valarray.pass.cpp | 37 + .../valarray.cassign/divide_value.pass.cpp | 34 + .../valarray.cassign/minus_valarray.pass.cpp | 37 + .../valarray.cassign/minus_value.pass.cpp | 34 + .../valarray.cassign/modulo_valarray.pass.cpp | 37 + .../valarray.cassign/modulo_value.pass.cpp | 34 + .../valarray.cassign/or_valarray.pass.cpp | 37 + .../valarray.cassign/or_value.pass.cpp | 34 + .../valarray.cassign/plus_valarray.pass.cpp | 37 + .../valarray.cassign/plus_value.pass.cpp | 34 + .../shift_left_valarray.pass.cpp | 37 + .../shift_left_value.pass.cpp | 34 + .../shift_right_valarray.pass.cpp | 37 + .../shift_right_value.pass.cpp | 34 + .../valarray.cassign/times_valarray.pass.cpp | 37 + .../valarray.cassign/times_value.pass.cpp | 34 + .../valarray.cassign/xor_valarray.pass.cpp | 37 + .../valarray.cassign/xor_value.pass.cpp | 34 + .../valarray.cons/copy.pass.cpp | 56 + .../valarray.cons/default.pass.cpp | 49 + .../valarray.cons/gslice_array.pass.cpp | 57 + .../valarray.cons/indirect_array.pass.cpp | 57 + .../valarray.cons/initializer_list.pass.cpp | 41 + .../valarray.cons/mask_array.pass.cpp | 34 + .../valarray.cons/move.pass.cpp | 62 + .../valarray.cons/pointer_size.pass.cpp | 53 + .../valarray.cons/size.pass.cpp | 55 + .../valarray.cons/slice_array.pass.cpp | 30 + .../valarray.cons/value_size.pass.cpp | 39 + .../valarray.members/apply_cref.pass.cpp | 51 + .../valarray.members/apply_value.pass.cpp | 51 + .../valarray.members/cshift.pass.cpp | 127 + .../valarray.members/max.pass.cpp | 40 + .../valarray.members/min.pass.cpp | 40 + .../valarray.members/resize.pass.cpp | 42 + .../valarray.members/shift.pass.cpp | 127 + .../valarray.members/size.pass.cpp | 41 + .../valarray.members/sum.pass.cpp | 28 + .../valarray.members/swap.pass.cpp | 86 + .../valarray.sub/gslice_const.pass.cpp | 77 + .../valarray.sub/gslice_non_const.pass.cpp | 57 + .../indirect_array_const.pass.cpp | 57 + .../indirect_array_non_const.pass.cpp | 58 + .../valarray.sub/slice_const.pass.cpp | 30 + .../valarray.sub/slice_non_const.pass.cpp | 43 + .../valarray.sub/valarray_bool_const.pass.cpp | 34 + .../valarray_bool_non_const.pass.cpp | 35 + .../valarray.unary/bit_not.pass.cpp | 56 + .../valarray.unary/negate.pass.cpp | 66 + .../valarray.unary/not.pass.cpp | 42 + .../valarray.unary/plus.pass.cpp | 66 + .../nothing_to_do.pass.cpp | 12 + .../and_valarray_valarray.pass.cpp | 36 + .../and_valarray_value.pass.cpp | 33 + .../and_value_valarray.pass.cpp | 33 + .../divide_valarray_valarray.pass.cpp | 36 + .../divide_valarray_value.pass.cpp | 33 + .../divide_value_valarray.pass.cpp | 33 + .../minus_valarray_valarray.pass.cpp | 36 + .../minus_valarray_value.pass.cpp | 33 + .../minus_value_valarray.pass.cpp | 33 + .../modulo_valarray_valarray.pass.cpp | 36 + .../modulo_valarray_value.pass.cpp | 33 + .../modulo_value_valarray.pass.cpp | 33 + .../or_valarray_valarray.pass.cpp | 36 + .../or_valarray_value.pass.cpp | 33 + .../or_value_valarray.pass.cpp | 33 + .../plus_valarray_valarray.pass.cpp | 36 + .../plus_valarray_value.pass.cpp | 33 + .../plus_value_valarray.pass.cpp | 33 + .../shift_left_valarray_valarray.pass.cpp | 36 + .../shift_left_valarray_value.pass.cpp | 33 + .../shift_left_value_valarray.pass.cpp | 33 + .../shift_right_valarray_valarray.pass.cpp | 36 + .../shift_right_valarray_value.pass.cpp | 33 + .../shift_right_value_valarray.pass.cpp | 33 + .../times_valarray_valarray.pass.cpp | 36 + .../times_valarray_value.pass.cpp | 33 + .../times_value_valarray.pass.cpp | 33 + .../xor_valarray_valarray.pass.cpp | 36 + .../xor_valarray_value.pass.cpp | 33 + .../xor_value_valarray.pass.cpp | 33 + .../and_valarray_valarray.pass.cpp | 38 + .../and_valarray_value.pass.cpp | 46 + .../and_value_valarray.pass.cpp | 46 + .../equal_valarray_valarray.pass.cpp | 38 + .../equal_valarray_value.pass.cpp | 35 + .../equal_value_valarray.pass.cpp | 35 + .../greater_equal_valarray_valarray.pass.cpp | 38 + .../greater_equal_valarray_value.pass.cpp | 35 + .../greater_equal_value_valarray.pass.cpp | 35 + .../greater_valarray_valarray.pass.cpp | 38 + .../greater_valarray_value.pass.cpp | 35 + .../greater_value_valarray.pass.cpp | 35 + .../less_equal_valarray_valarray.pass.cpp | 38 + .../less_equal_valarray_value.pass.cpp | 35 + .../less_equal_value_valarray.pass.cpp | 35 + .../less_valarray_valarray.pass.cpp | 38 + .../less_valarray_value.pass.cpp | 35 + .../less_value_valarray.pass.cpp | 35 + .../not_equal_valarray_valarray.pass.cpp | 38 + .../not_equal_valarray_value.pass.cpp | 35 + .../not_equal_value_valarray.pass.cpp | 35 + .../or_valarray_valarray.pass.cpp | 38 + .../or_valarray_value.pass.cpp | 46 + .../or_value_valarray.pass.cpp | 46 + .../valarray.special/swap.pass.cpp | 88 + .../valarray.transcend/abs_valarray.pass.cpp | 35 + .../valarray.transcend/acos_valarray.pass.cpp | 52 + .../valarray.transcend/asin_valarray.pass.cpp | 52 + .../atan2_valarray_valarray.pass.cpp | 54 + .../atan2_valarray_value.pass.cpp | 52 + .../atan2_value_valarray.pass.cpp | 52 + .../valarray.transcend/atan_valarray.pass.cpp | 52 + .../valarray.transcend/cos_valarray.pass.cpp | 52 + .../valarray.transcend/cosh_valarray.pass.cpp | 52 + .../valarray.transcend/exp_valarray.pass.cpp | 52 + .../log10_valarray.pass.cpp | 52 + .../valarray.transcend/log_valarray.pass.cpp | 52 + .../pow_valarray_valarray.pass.cpp | 54 + .../pow_valarray_value.pass.cpp | 52 + .../pow_value_valarray.pass.cpp | 52 + .../valarray.transcend/sin_valarray.pass.cpp | 52 + .../valarray.transcend/sinh_valarray.pass.cpp | 52 + .../valarray.transcend/sqrt_valarray.pass.cpp | 52 + .../valarray.transcend/tan_valarray.pass.cpp | 52 + .../valarray.transcend/tanh_valarray.pass.cpp | 52 + .../valarray.range/begin_const.pass.cpp | 30 + .../valarray.range/begin_non_const.pass.cpp | 31 + .../valarray.range/end_const.pass.cpp | 32 + .../valarray.range/end_non_const.pass.cpp | 33 + .../valarray.syn/nothing_to_do.pass.cpp | 12 + .../accumulate/accumulate.pass.cpp | 53 + .../accumulate/accumulate_op.pass.cpp | 55 + .../adjacent_difference.pass.cpp | 116 + .../adjacent_difference_op.pass.cpp | 119 + .../exclusive.scan/exclusive_scan.pass.cpp | 100 + .../exclusive_scan_init_op.pass.cpp | 89 + .../inclusive.scan/inclusive_scan.pass.cpp | 105 + .../inclusive.scan/inclusive_scan_op.pass.cpp | 114 + .../inclusive_scan_op_init.pass.cpp | 130 + .../inner.product/inner_product.pass.cpp | 82 + .../inner.product/inner_product_comp.pass.cpp | 85 + .../numeric.ops/numeric.iota/iota.pass.cpp | 38 + .../numeric.ops.gcd/gcd.bool1.fail.cpp | 25 + .../numeric.ops.gcd/gcd.bool2.fail.cpp | 25 + .../numeric.ops.gcd/gcd.bool3.fail.cpp | 25 + .../numeric.ops.gcd/gcd.bool4.fail.cpp | 25 + .../gcd.not_integral1.fail.cpp | 25 + .../gcd.not_integral2.fail.cpp | 25 + .../numeric.ops/numeric.ops.gcd/gcd.pass.cpp | 145 + .../numeric.ops.lcm/lcm.bool1.fail.cpp | 25 + .../numeric.ops.lcm/lcm.bool2.fail.cpp | 25 + .../numeric.ops.lcm/lcm.bool3.fail.cpp | 25 + .../numeric.ops.lcm/lcm.bool4.fail.cpp | 25 + .../lcm.not_integral1.fail.cpp | 25 + .../lcm.not_integral2.fail.cpp | 25 + .../numeric.ops/numeric.ops.lcm/lcm.pass.cpp | 145 + .../partial.sum/partial_sum.pass.cpp | 70 + .../partial.sum/partial_sum_op.pass.cpp | 72 + .../numeric.ops/reduce/reduce.pass.cpp | 63 + .../numeric.ops/reduce/reduce_init.pass.cpp | 67 + .../reduce/reduce_init_op.pass.cpp | 74 + ...sform_exclusive_scan_init_bop_uop.pass.cpp | 154 + .../transform_inclusive_scan_bop_uop.pass.cpp | 128 + ...sform_inclusive_scan_bop_uop_init.pass.cpp | 154 + ...orm_reduce_iter_iter_init_bop_uop.pass.cpp | 121 + ...nsform_reduce_iter_iter_iter_init.pass.cpp | 107 + ..._reduce_iter_iter_iter_init_op_op.pass.cpp | 111 + .../nothing_to_do.pass.cpp | 12 + .../numerics.general/nothing_to_do.pass.cpp | 12 + test/std/numerics/rand/nothing_to_do.pass.cpp | 12 + .../rand/rand.adapt/nothing_to_do.pass.cpp | 12 + .../rand.adapt.disc/assign.pass.cpp | 56 + .../rand.adapt/rand.adapt.disc/copy.pass.cpp | 54 + .../rand.adapt.disc/ctor_engine_copy.pass.cpp | 29 + .../rand.adapt.disc/ctor_engine_move.pass.cpp | 30 + .../rand.adapt.disc/ctor_result_type.pass.cpp | 51 + .../rand.adapt.disc/ctor_sseq.pass.cpp | 55 + .../rand.adapt.disc/default.pass.cpp | 42 + .../rand.adapt.disc/discard.pass.cpp | 52 + .../rand.adapt/rand.adapt.disc/eval.pass.cpp | 42 + .../rand.adapt/rand.adapt.disc/io.pass.cpp | 63 + .../rand.adapt.disc/result_type.pass.cpp | 42 + .../rand.adapt.disc/seed_result_type.pass.cpp | 50 + .../rand.adapt.disc/seed_sseq.pass.cpp | 48 + .../rand.adapt.disc/values.pass.cpp | 72 + .../rand.adapt.ibits/assign.pass.cpp | 56 + .../rand.adapt/rand.adapt.ibits/copy.pass.cpp | 54 + .../ctor_engine_copy.pass.cpp | 29 + .../ctor_engine_move.pass.cpp | 30 + .../ctor_result_type.pass.cpp | 51 + .../rand.adapt.ibits/ctor_sseq.pass.cpp | 55 + .../rand.adapt.ibits/default.pass.cpp | 42 + .../rand.adapt.ibits/discard.pass.cpp | 52 + .../rand.adapt/rand.adapt.ibits/eval.pass.cpp | 143 + .../rand.adapt/rand.adapt.ibits/io.pass.cpp | 63 + .../rand.adapt.ibits/result_type.pass.cpp | 85 + .../seed_result_type.pass.cpp | 50 + .../rand.adapt.ibits/seed_sseq.pass.cpp | 48 + .../rand.adapt.ibits/values.pass.cpp | 59 + .../rand.adapt.shuf/assign.pass.cpp | 39 + .../rand.adapt/rand.adapt.shuf/copy.pass.cpp | 38 + .../rand.adapt.shuf/ctor_engine_copy.pass.cpp | 33 + .../rand.adapt.shuf/ctor_engine_move.pass.cpp | 34 + .../rand.adapt.shuf/ctor_result_type.pass.cpp | 76 + .../rand.adapt.shuf/ctor_sseq.pass.cpp | 79 + .../rand.adapt.shuf/default.pass.cpp | 32 + .../rand.adapt.shuf/discard.pass.cpp | 37 + .../rand.adapt/rand.adapt.shuf/eval.pass.cpp | 95 + .../rand.adapt/rand.adapt.shuf/io.pass.cpp | 48 + .../rand.adapt.shuf/result_type.pass.cpp | 85 + .../rand.adapt.shuf/seed_result_type.pass.cpp | 36 + .../rand.adapt.shuf/seed_sseq.pass.cpp | 35 + .../rand.adapt.shuf/values.pass.cpp | 51 + .../numerics/rand/rand.device/ctor.pass.cpp | 103 + .../rand/rand.device/entropy.pass.cpp | 24 + .../numerics/rand/rand.device/eval.pass.cpp | 49 + .../rand/rand.dis/nothing_to_do.pass.cpp | 12 + .../rand.dist.bern/nothing_to_do.pass.cpp | 12 + .../rand.dist.bern.bernoulli/assign.pass.cpp | 33 + .../rand.dist.bern.bernoulli/copy.pass.cpp | 31 + .../ctor_double.pass.cpp | 36 + .../ctor_param.pass.cpp | 28 + .../rand.dist.bern.bernoulli/eq.pass.cpp | 36 + .../rand.dist.bern.bernoulli/eval.pass.cpp | 104 + .../eval_param.pass.cpp | 108 + .../get_param.pass.cpp | 28 + .../rand.dist.bern.bernoulli/io.pass.cpp | 40 + .../rand.dist.bern.bernoulli/max.pass.cpp | 26 + .../rand.dist.bern.bernoulli/min.pass.cpp | 26 + .../param_assign.pass.cpp | 30 + .../param_copy.pass.cpp | 29 + .../param_ctor.pass.cpp | 34 + .../param_eq.pass.cpp | 36 + .../param_types.pass.cpp | 27 + .../set_param.pass.cpp | 29 + .../rand.dist.bern.bernoulli/types.pass.cpp | 26 + .../rand.dist.bern.bin/assign.pass.cpp | 34 + .../rand.dist.bern.bin/copy.pass.cpp | 32 + .../ctor_int_double.pass.cpp | 40 + .../rand.dist.bern.bin/ctor_param.pass.cpp | 30 + .../rand.dist.bern.bin/eq.pass.cpp | 43 + .../rand.dist.bern.bin/eval.pass.cpp | 523 + .../rand.dist.bern.bin/eval_param.pass.cpp | 160 + .../rand.dist.bern.bin/get_param.pass.cpp | 29 + .../rand.dist.bern.bin/io.pass.cpp | 41 + .../rand.dist.bern.bin/max.pass.cpp | 27 + .../rand.dist.bern.bin/min.pass.cpp | 27 + .../rand.dist.bern.bin/param_assign.pass.cpp | 32 + .../rand.dist.bern.bin/param_copy.pass.cpp | 31 + .../rand.dist.bern.bin/param_ctor.pass.cpp | 44 + .../rand.dist.bern.bin/param_eq.pass.cpp | 37 + .../rand.dist.bern.bin/param_types.pass.cpp | 28 + .../rand.dist.bern.bin/set_param.pass.cpp | 30 + .../rand.dist.bern.bin/types.pass.cpp | 32 + .../rand.dist.bern.geo/assign.pass.cpp | 34 + .../rand.dist.bern.geo/copy.pass.cpp | 32 + .../rand.dist.bern.geo/ctor_double.pass.cpp | 32 + .../rand.dist.bern.geo/ctor_param.pass.cpp | 29 + .../rand.dist.bern.geo/eq.pass.cpp | 37 + .../rand.dist.bern.geo/eval.pass.cpp | 298 + .../rand.dist.bern.geo/eval_param.pass.cpp | 160 + .../rand.dist.bern.geo/get_param.pass.cpp | 29 + .../rand.dist.bern.geo/io.pass.cpp | 41 + .../rand.dist.bern.geo/max.pass.cpp | 27 + .../rand.dist.bern.geo/min.pass.cpp | 27 + .../rand.dist.bern.geo/param_assign.pass.cpp | 31 + .../rand.dist.bern.geo/param_copy.pass.cpp | 30 + .../rand.dist.bern.geo/param_ctor.pass.cpp | 35 + .../rand.dist.bern.geo/param_eq.pass.cpp | 37 + .../rand.dist.bern.geo/param_types.pass.cpp | 28 + .../rand.dist.bern.geo/set_param.pass.cpp | 30 + .../rand.dist.bern.geo/types.pass.cpp | 32 + .../rand.dist.bern.negbin/assign.pass.cpp | 34 + .../rand.dist.bern.negbin/copy.pass.cpp | 32 + .../ctor_int_double.pass.cpp | 40 + .../rand.dist.bern.negbin/ctor_param.pass.cpp | 30 + .../rand.dist.bern.negbin/eq.pass.cpp | 43 + .../rand.dist.bern.negbin/eval.pass.cpp | 296 + .../rand.dist.bern.negbin/eval_param.pass.cpp | 160 + .../rand.dist.bern.negbin/get_param.pass.cpp | 29 + .../rand.dist.bern.negbin/io.pass.cpp | 41 + .../rand.dist.bern.negbin/max.pass.cpp | 27 + .../rand.dist.bern.negbin/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../rand.dist.bern.negbin/param_copy.pass.cpp | 31 + .../rand.dist.bern.negbin/param_ctor.pass.cpp | 44 + .../rand.dist.bern.negbin/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.bern.negbin/set_param.pass.cpp | 30 + .../rand.dist.bern.negbin/types.pass.cpp | 32 + .../rand.dist.norm/nothing_to_do.pass.cpp | 12 + .../rand.dist.norm.cauchy/assign.pass.cpp | 34 + .../rand.dist.norm.cauchy/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../rand.dist.norm.cauchy/ctor_param.pass.cpp | 30 + .../rand.dist.norm.cauchy/eq.pass.cpp | 37 + .../rand.dist.norm.cauchy/eval.pass.cpp | 77 + .../rand.dist.norm.cauchy/eval_param.pass.cpp | 83 + .../rand.dist.norm.cauchy/get_param.pass.cpp | 29 + .../rand.dist.norm.cauchy/io.pass.cpp | 41 + .../rand.dist.norm.cauchy/max.pass.cpp | 28 + .../rand.dist.norm.cauchy/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../rand.dist.norm.cauchy/param_copy.pass.cpp | 31 + .../rand.dist.norm.cauchy/param_ctor.pass.cpp | 44 + .../rand.dist.norm.cauchy/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.norm.cauchy/set_param.pass.cpp | 30 + .../rand.dist.norm.cauchy/types.pass.cpp | 34 + .../rand.dist.norm.chisq/assign.pass.cpp | 34 + .../rand.dist.norm.chisq/copy.pass.cpp | 32 + .../rand.dist.norm.chisq/ctor_double.pass.cpp | 32 + .../rand.dist.norm.chisq/ctor_param.pass.cpp | 29 + .../rand.dist.norm.chisq/eq.pass.cpp | 37 + .../rand.dist.norm.chisq/eval.pass.cpp | 152 + .../rand.dist.norm.chisq/eval_param.pass.cpp | 158 + .../rand.dist.norm.chisq/get_param.pass.cpp | 29 + .../rand.dist.norm.chisq/io.pass.cpp | 41 + .../rand.dist.norm.chisq/max.pass.cpp | 28 + .../rand.dist.norm.chisq/min.pass.cpp | 27 + .../param_assign.pass.cpp | 31 + .../rand.dist.norm.chisq/param_copy.pass.cpp | 30 + .../rand.dist.norm.chisq/param_ctor.pass.cpp | 35 + .../rand.dist.norm.chisq/param_eq.pass.cpp | 37 + .../rand.dist.norm.chisq/param_types.pass.cpp | 28 + .../rand.dist.norm.chisq/set_param.pass.cpp | 30 + .../rand.dist.norm.chisq/types.pass.cpp | 34 + .../rand.dist.norm.f/assign.pass.cpp | 34 + .../rand.dist.norm.f/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../rand.dist.norm.f/ctor_param.pass.cpp | 30 + .../rand.dist.norm.f/eq.pass.cpp | 37 + .../rand.dist.norm.f/eval.pass.cpp | 103 + .../rand.dist.norm.f/eval_param.pass.cpp | 109 + .../rand.dist.norm.f/get_param.pass.cpp | 29 + .../rand.dist.norm.f/io.pass.cpp | 41 + .../rand.dist.norm.f/max.pass.cpp | 28 + .../rand.dist.norm.f/min.pass.cpp | 27 + .../rand.dist.norm.f/param_assign.pass.cpp | 32 + .../rand.dist.norm.f/param_copy.pass.cpp | 31 + .../rand.dist.norm.f/param_ctor.pass.cpp | 44 + .../rand.dist.norm.f/param_eq.pass.cpp | 37 + .../rand.dist.norm.f/param_types.pass.cpp | 28 + .../rand.dist.norm.f/set_param.pass.cpp | 30 + .../rand.dist.norm.f/types.pass.cpp | 34 + .../rand.dist.norm.lognormal/assign.pass.cpp | 34 + .../rand.dist.norm.lognormal/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../ctor_param.pass.cpp | 30 + .../rand.dist.norm.lognormal/eq.pass.cpp | 37 + .../rand.dist.norm.lognormal/eval.pass.cpp | 259 + .../eval_param.pass.cpp | 269 + .../get_param.pass.cpp | 29 + .../rand.dist.norm.lognormal/io.pass.cpp | 41 + .../rand.dist.norm.lognormal/max.pass.cpp | 28 + .../rand.dist.norm.lognormal/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../param_copy.pass.cpp | 31 + .../param_ctor.pass.cpp | 44 + .../param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../set_param.pass.cpp | 30 + .../rand.dist.norm.lognormal/types.pass.cpp | 34 + .../rand.dist.norm.normal/assign.pass.cpp | 34 + .../rand.dist.norm.normal/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../rand.dist.norm.normal/ctor_param.pass.cpp | 30 + .../rand.dist.norm.normal/eq.pass.cpp | 37 + .../rand.dist.norm.normal/eval.pass.cpp | 70 + .../rand.dist.norm.normal/eval_param.pass.cpp | 72 + .../rand.dist.norm.normal/get_param.pass.cpp | 29 + .../rand.dist.norm.normal/io.pass.cpp | 41 + .../rand.dist.norm.normal/max.pass.cpp | 28 + .../rand.dist.norm.normal/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../rand.dist.norm.normal/param_copy.pass.cpp | 31 + .../rand.dist.norm.normal/param_ctor.pass.cpp | 44 + .../rand.dist.norm.normal/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.norm.normal/set_param.pass.cpp | 30 + .../rand.dist.norm.normal/types.pass.cpp | 34 + .../rand.dist.norm.t/assign.pass.cpp | 34 + .../rand.dist.norm.t/copy.pass.cpp | 32 + .../rand.dist.norm.t/ctor_double.pass.cpp | 32 + .../rand.dist.norm.t/ctor_param.pass.cpp | 29 + .../rand.dist.norm.t/eq.pass.cpp | 37 + .../rand.dist.norm.t/eval.pass.cpp | 139 + .../rand.dist.norm.t/eval_param.pass.cpp | 145 + .../rand.dist.norm.t/get_param.pass.cpp | 29 + .../rand.dist.norm.t/io.pass.cpp | 41 + .../rand.dist.norm.t/max.pass.cpp | 28 + .../rand.dist.norm.t/min.pass.cpp | 27 + .../rand.dist.norm.t/param_assign.pass.cpp | 31 + .../rand.dist.norm.t/param_copy.pass.cpp | 30 + .../rand.dist.norm.t/param_ctor.pass.cpp | 35 + .../rand.dist.norm.t/param_eq.pass.cpp | 37 + .../rand.dist.norm.t/param_types.pass.cpp | 28 + .../rand.dist.norm.t/set_param.pass.cpp | 30 + .../rand.dist.norm.t/types.pass.cpp | 34 + .../rand.dist.pois/nothing_to_do.pass.cpp | 12 + .../rand.dist.pois.exp/assign.pass.cpp | 34 + .../rand.dist.pois.exp/copy.pass.cpp | 32 + .../rand.dist.pois.exp/ctor_double.pass.cpp | 32 + .../rand.dist.pois.exp/ctor_param.pass.cpp | 29 + .../rand.dist.pois.exp/eq.pass.cpp | 37 + .../rand.dist.pois.exp/eval.pass.cpp | 152 + .../rand.dist.pois.exp/eval_param.pass.cpp | 76 + .../rand.dist.pois.exp/get_param.pass.cpp | 29 + .../rand.dist.pois.exp/io.pass.cpp | 41 + .../rand.dist.pois.exp/max.pass.cpp | 28 + .../rand.dist.pois.exp/min.pass.cpp | 27 + .../rand.dist.pois.exp/param_assign.pass.cpp | 31 + .../rand.dist.pois.exp/param_copy.pass.cpp | 30 + .../rand.dist.pois.exp/param_ctor.pass.cpp | 35 + .../rand.dist.pois.exp/param_eq.pass.cpp | 37 + .../rand.dist.pois.exp/param_types.pass.cpp | 28 + .../rand.dist.pois.exp/set_param.pass.cpp | 30 + .../rand.dist.pois.exp/types.pass.cpp | 34 + .../rand.dist.pois.extreme/assign.pass.cpp | 34 + .../rand.dist.pois.extreme/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../ctor_param.pass.cpp | 30 + .../rand.dist.pois.extreme/eq.pass.cpp | 37 + .../rand.dist.pois.extreme/eval.pass.cpp | 202 + .../eval_param.pass.cpp | 210 + .../rand.dist.pois.extreme/get_param.pass.cpp | 29 + .../rand.dist.pois.extreme/io.pass.cpp | 41 + .../rand.dist.pois.extreme/max.pass.cpp | 28 + .../rand.dist.pois.extreme/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../param_copy.pass.cpp | 31 + .../param_ctor.pass.cpp | 44 + .../rand.dist.pois.extreme/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.pois.extreme/set_param.pass.cpp | 30 + .../rand.dist.pois.extreme/types.pass.cpp | 34 + .../rand.dist.pois.gamma/assign.pass.cpp | 34 + .../rand.dist.pois.gamma/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../rand.dist.pois.gamma/ctor_param.pass.cpp | 30 + .../rand.dist.pois.gamma/eq.pass.cpp | 37 + .../rand.dist.pois.gamma/eval.pass.cpp | 151 + .../rand.dist.pois.gamma/eval_param.pass.cpp | 157 + .../rand.dist.pois.gamma/get_param.pass.cpp | 29 + .../rand.dist.pois.gamma/io.pass.cpp | 41 + .../rand.dist.pois.gamma/max.pass.cpp | 28 + .../rand.dist.pois.gamma/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../rand.dist.pois.gamma/param_copy.pass.cpp | 31 + .../rand.dist.pois.gamma/param_ctor.pass.cpp | 44 + .../rand.dist.pois.gamma/param_eq.pass.cpp | 37 + .../rand.dist.pois.gamma/param_types.pass.cpp | 28 + .../rand.dist.pois.gamma/set_param.pass.cpp | 30 + .../rand.dist.pois.gamma/types.pass.cpp | 34 + .../rand.dist.pois.poisson/assign.pass.cpp | 34 + .../rand.dist.pois.poisson/copy.pass.cpp | 32 + .../ctor_double.pass.cpp | 32 + .../ctor_param.pass.cpp | 29 + .../rand.dist.pois.poisson/eq.pass.cpp | 37 + .../rand.dist.pois.poisson/eval.pass.cpp | 151 + .../eval_param.pass.cpp | 157 + .../rand.dist.pois.poisson/get_param.pass.cpp | 29 + .../rand.dist.pois.poisson/io.pass.cpp | 41 + .../rand.dist.pois.poisson/max.pass.cpp | 28 + .../rand.dist.pois.poisson/min.pass.cpp | 27 + .../param_assign.pass.cpp | 31 + .../param_copy.pass.cpp | 30 + .../param_ctor.pass.cpp | 35 + .../rand.dist.pois.poisson/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.pois.poisson/set_param.pass.cpp | 30 + .../rand.dist.pois.poisson/types.pass.cpp | 34 + .../rand.dist.pois.weibull/assign.pass.cpp | 34 + .../rand.dist.pois.weibull/copy.pass.cpp | 32 + .../ctor_double_double.pass.cpp | 40 + .../ctor_param.pass.cpp | 30 + .../rand.dist.pois.weibull/eq.pass.cpp | 37 + .../rand.dist.pois.weibull/eval.pass.cpp | 164 + .../eval_param.pass.cpp | 170 + .../rand.dist.pois.weibull/get_param.pass.cpp | 29 + .../rand.dist.pois.weibull/io.pass.cpp | 41 + .../rand.dist.pois.weibull/max.pass.cpp | 28 + .../rand.dist.pois.weibull/min.pass.cpp | 27 + .../param_assign.pass.cpp | 32 + .../param_copy.pass.cpp | 31 + .../param_ctor.pass.cpp | 44 + .../rand.dist.pois.weibull/param_eq.pass.cpp | 37 + .../param_types.pass.cpp | 28 + .../rand.dist.pois.weibull/set_param.pass.cpp | 30 + .../rand.dist.pois.weibull/types.pass.cpp | 34 + .../rand.dist.samp/nothing_to_do.pass.cpp | 12 + .../rand.dist.samp.discrete/assign.pass.cpp | 35 + .../rand.dist.samp.discrete/copy.pass.cpp | 33 + .../ctor_default.pass.cpp | 29 + .../ctor_func.pass.cpp | 60 + .../ctor_init.pass.cpp | 81 + .../ctor_iterator.pass.cpp | 87 + .../ctor_param.pass.cpp | 33 + .../rand.dist.samp.discrete/eq.pass.cpp | 45 + .../rand.dist.samp.discrete/eval.pass.cpp | 279 + .../eval_param.pass.cpp | 45 + .../get_param.pass.cpp | 30 + .../rand.dist.samp.discrete/io.pass.cpp | 42 + .../rand.dist.samp.discrete/max.pass.cpp | 34 + .../rand.dist.samp.discrete/min.pass.cpp | 28 + .../param_assign.pass.cpp | 32 + .../param_copy.pass.cpp | 31 + .../param_ctor_default.pass.cpp | 32 + .../param_ctor_func.pass.cpp | 64 + .../param_ctor_init.pass.cpp | 88 + .../param_ctor_iterator.pass.cpp | 94 + .../rand.dist.samp.discrete/param_eq.pass.cpp | 39 + .../param_types.pass.cpp | 28 + .../set_param.pass.cpp | 31 + .../rand.dist.samp.discrete/types.pass.cpp | 32 + .../rand.dist.samp.pconst/assign.pass.cpp | 36 + .../rand.dist.samp.pconst/copy.pass.cpp | 34 + .../ctor_default.pass.cpp | 35 + .../rand.dist.samp.pconst/ctor_func.pass.cpp | 64 + .../ctor_init_func.pass.cpp | 78 + .../ctor_iterator.pass.cpp | 96 + .../rand.dist.samp.pconst/ctor_param.pass.cpp | 41 + .../rand.dist.samp.pconst/eq.pass.cpp | 47 + .../rand.dist.samp.pconst/eval.pass.cpp | 740 + .../rand.dist.samp.pconst/eval_param.pass.cpp | 99 + .../rand.dist.samp.pconst/get_param.pass.cpp | 32 + .../rand.dist.samp.pconst/io.pass.cpp | 44 + .../rand.dist.samp.pconst/max.pass.cpp | 30 + .../rand.dist.samp.pconst/min.pass.cpp | 30 + .../param_assign.pass.cpp | 34 + .../rand.dist.samp.pconst/param_copy.pass.cpp | 33 + .../param_ctor_default.pass.cpp | 34 + .../param_ctor_func.pass.cpp | 67 + .../param_ctor_init_func.pass.cpp | 79 + .../param_ctor_iterator.pass.cpp | 100 + .../rand.dist.samp.pconst/param_eq.pass.cpp | 41 + .../param_types.pass.cpp | 28 + .../rand.dist.samp.pconst/set_param.pass.cpp | 32 + .../rand.dist.samp.pconst/types.pass.cpp | 32 + .../rand.dist.samp.plinear/assign.pass.cpp | 36 + .../rand.dist.samp.plinear/copy.pass.cpp | 34 + .../ctor_default.pass.cpp | 36 + .../rand.dist.samp.plinear/ctor_func.pass.cpp | 69 + .../ctor_init_func.pass.cpp | 82 + .../ctor_iterator.pass.cpp | 101 + .../ctor_param.pass.cpp | 42 + .../rand.dist.samp.plinear/eq.pass.cpp | 47 + .../rand.dist.samp.plinear/eval.pass.cpp | 366 + .../eval_param.pass.cpp | 94 + .../rand.dist.samp.plinear/get_param.pass.cpp | 32 + .../rand.dist.samp.plinear/io.pass.cpp | 44 + .../rand.dist.samp.plinear/max.pass.cpp | 30 + .../rand.dist.samp.plinear/min.pass.cpp | 30 + .../param_assign.pass.cpp | 34 + .../param_copy.pass.cpp | 33 + .../param_ctor_default.pass.cpp | 35 + .../param_ctor_func.pass.cpp | 70 + .../param_ctor_init_func.pass.cpp | 83 + .../param_ctor_iterator.pass.cpp | 105 + .../rand.dist.samp.plinear/param_eq.pass.cpp | 41 + .../param_types.pass.cpp | 28 + .../rand.dist.samp.plinear/set_param.pass.cpp | 32 + .../rand.dist.samp.plinear/types.pass.cpp | 32 + .../rand.dist.uni/nothing_to_do.pass.cpp | 12 + .../rand.dist.uni.int/assign.pass.cpp | 34 + .../rand.dist.uni.int/copy.pass.cpp | 32 + .../rand.dist.uni.int/ctor_int_int.pass.cpp | 41 + .../rand.dist.uni.int/ctor_param.pass.cpp | 30 + .../rand.dist.uni.int/eq.pass.cpp | 37 + .../rand.dist.uni.int/eval.pass.cpp | 456 + .../rand.dist.uni.int/eval_param.pass.cpp | 76 + .../rand.dist.uni.int/get_param.pass.cpp | 29 + .../rand.dist.uni.int/io.pass.cpp | 41 + .../rand.dist.uni.int/max.pass.cpp | 27 + .../rand.dist.uni.int/min.pass.cpp | 27 + .../rand.dist.uni.int/param_assign.pass.cpp | 32 + .../rand.dist.uni.int/param_copy.pass.cpp | 31 + .../rand.dist.uni.int/param_ctor.pass.cpp | 44 + .../rand.dist.uni.int/param_eq.pass.cpp | 37 + .../rand.dist.uni.int/param_types.pass.cpp | 28 + .../rand.dist.uni.int/set_param.pass.cpp | 30 + .../rand.dist.uni.int/types.pass.cpp | 27 + .../rand.dist.uni.real/assign.pass.cpp | 34 + .../rand.dist.uni.real/copy.pass.cpp | 32 + .../rand.dist.uni.real/ctor_int_int.pass.cpp | 41 + .../rand.dist.uni.real/ctor_param.pass.cpp | 30 + .../rand.dist.uni.real/eq.pass.cpp | 37 + .../rand.dist.uni.real/eval.pass.cpp | 475 + .../rand.dist.uni.real/eval_param.pass.cpp | 75 + .../rand.dist.uni.real/get_param.pass.cpp | 29 + .../rand.dist.uni.real/io.pass.cpp | 41 + .../rand.dist.uni.real/max.pass.cpp | 27 + .../rand.dist.uni.real/min.pass.cpp | 27 + .../rand.dist.uni.real/param_assign.pass.cpp | 32 + .../rand.dist.uni.real/param_copy.pass.cpp | 31 + .../rand.dist.uni.real/param_ctor.pass.cpp | 44 + .../rand.dist.uni.real/param_eq.pass.cpp | 37 + .../rand.dist.uni.real/param_types.pass.cpp | 28 + .../rand.dist.uni.real/set_param.pass.cpp | 30 + .../rand.dist.uni.real/types.pass.cpp | 27 + .../rand/rand.eng/nothing_to_do.pass.cpp | 12 + .../rand.eng/rand.eng.lcong/assign.pass.cpp | 58 + .../rand.eng/rand.eng.lcong/copy.pass.cpp | 58 + .../rand.eng.lcong/ctor_result_type.pass.cpp | 154 + .../rand.eng.lcong/ctor_sseq.pass.cpp | 29 + .../rand.eng/rand.eng.lcong/default.pass.cpp | 56 + .../rand.eng/rand.eng.lcong/discard.pass.cpp | 73 + .../rand.eng/rand.eng.lcong/eval.pass.cpp | 87 + .../rand/rand.eng/rand.eng.lcong/io.pass.cpp | 44 + .../rand.eng.lcong/result_type.pass.cpp | 37 + .../rand.eng.lcong/seed_result_type.pass.cpp | 40 + .../rand.eng.lcong/seed_sseq.pass.cpp | 39 + .../rand.eng/rand.eng.lcong/values.pass.cpp | 95 + .../rand.eng/rand.eng.mers/assign.pass.cpp | 58 + .../rand/rand.eng/rand.eng.mers/copy.pass.cpp | 56 + .../rand.eng.mers/ctor_result_type.pass.cpp | 245 + .../rand.eng/rand.eng.mers/ctor_sseq.pass.cpp | 309 + .../rand.eng/rand.eng.mers/default.pass.cpp | 45 + .../rand.eng/rand.eng.mers/discard.pass.cpp | 55 + .../rand/rand.eng/rand.eng.mers/eval.pass.cpp | 45 + .../rand/rand.eng/rand.eng.mers/io.pass.cpp | 69 + .../rand.eng.mers/result_type.pass.cpp | 44 + .../rand.eng.mers/seed_result_type.pass.cpp | 52 + .../rand.eng/rand.eng.mers/seed_sseq.pass.cpp | 50 + .../rand.eng/rand.eng.mers/values.pass.cpp | 134 + .../rand.eng/rand.eng.sub/assign.pass.cpp | 56 + .../rand/rand.eng/rand.eng.sub/copy.pass.cpp | 54 + .../rand.eng.sub/ctor_result_type.pass.cpp | 51 + .../rand.eng/rand.eng.sub/ctor_sseq.pass.cpp | 55 + .../rand.eng/rand.eng.sub/default.pass.cpp | 42 + .../rand.eng/rand.eng.sub/discard.pass.cpp | 52 + .../rand/rand.eng/rand.eng.sub/eval.pass.cpp | 42 + .../rand/rand.eng/rand.eng.sub/io.pass.cpp | 63 + .../rand.eng.sub/result_type.pass.cpp | 42 + .../rand.eng.sub/seed_result_type.pass.cpp | 50 + .../rand.eng/rand.eng.sub/seed_sseq.pass.cpp | 48 + .../rand.eng/rand.eng.sub/values.pass.cpp | 82 + .../default_random_engine.pass.cpp | 24 + .../rand/rand.predef/knuth_b.pass.cpp | 22 + .../rand/rand.predef/minstd_rand.pass.cpp | 23 + .../rand/rand.predef/minstd_rand0.pass.cpp | 23 + .../rand/rand.predef/mt19937.pass.cpp | 27 + .../rand/rand.predef/mt19937_64.pass.cpp | 27 + .../rand/rand.predef/ranlux24.pass.cpp | 22 + .../rand/rand.predef/ranlux24_base.pass.cpp | 22 + .../rand/rand.predef/ranlux48.pass.cpp | 22 + .../rand/rand.predef/ranlux48_base.pass.cpp | 22 + .../rand/rand.req/nothing_to_do.pass.cpp | 12 + .../rand.req.adapt/nothing_to_do.pass.cpp | 12 + .../rand.req.dst/nothing_to_do.pass.cpp | 12 + .../rand.req.eng/nothing_to_do.pass.cpp | 12 + .../rand.req.genl/nothing_to_do.pass.cpp | 12 + .../rand.req.seedseq/nothing_to_do.pass.cpp | 12 + .../rand.req.urng/nothing_to_do.pass.cpp | 12 + .../rand/rand.util/nothing_to_do.pass.cpp | 12 + .../generate_canonical.pass.cpp | 100 + .../rand.util.seedseq/assign.fail.cpp | 23 + .../rand.util/rand.util.seedseq/copy.fail.cpp | 22 + .../rand.util.seedseq/default.pass.cpp | 23 + .../rand.util.seedseq/generate.pass.cpp | 805 + .../initializer_list.pass.cpp | 33 + .../rand.util.seedseq/iterator.pass.cpp | 32 + .../rand.util.seedseq/types.pass.cpp | 24 + test/std/re/nothing_to_do.pass.cpp | 12 + test/std/re/re.alg/nothing_to_do.pass.cpp | 12 + test/std/re/re.alg/re.alg.match/awk.pass.cpp | 1393 + .../std/re/re.alg/re.alg.match/basic.fail.cpp | 36 + .../std/re/re.alg/re.alg.match/basic.pass.cpp | 1368 + test/std/re/re.alg/re.alg.match/ecma.pass.cpp | 1392 + .../std/re/re.alg/re.alg.match/egrep.pass.cpp | 82 + .../re.alg/re.alg.match/exponential.pass.cpp | 48 + .../re/re.alg/re.alg.match/extended.pass.cpp | 1364 + test/std/re/re.alg/re.alg.match/grep.pass.cpp | 50 + .../inverted_character_classes.pass.cpp | 44 + .../re.alg.match/lookahead_capture.pass.cpp | 99 + .../parse_curly_brackets.pass.cpp | 73 + .../re/re.alg/re.alg.replace/test1.pass.cpp | 108 + .../re/re.alg/re.alg.replace/test2.pass.cpp | 108 + .../re/re.alg/re.alg.replace/test3.pass.cpp | 74 + .../re/re.alg/re.alg.replace/test4.pass.cpp | 73 + .../re/re.alg/re.alg.replace/test5.pass.cpp | 74 + .../re/re.alg/re.alg.replace/test6.pass.cpp | 74 + test/std/re/re.alg/re.alg.search/awk.pass.cpp | 1575 + .../re/re.alg/re.alg.search/backup.pass.cpp | 64 + .../re/re.alg/re.alg.search/basic.fail.cpp | 36 + .../re/re.alg/re.alg.search/basic.pass.cpp | 1548 + .../std/re/re.alg/re.alg.search/ecma.pass.cpp | 1590 + .../re/re.alg/re.alg.search/egrep.pass.cpp | 91 + .../re.alg/re.alg.search/exponential.pass.cpp | 48 + .../re/re.alg/re.alg.search/extended.pass.cpp | 1544 + .../std/re/re.alg/re.alg.search/grep.pass.cpp | 89 + .../invert_neg_word_search.pass.cpp | 29 + .../re.alg/re.alg.search/lookahead.pass.cpp | 29 + .../re.alg.search/no_update_pos.pass.cpp | 39 + .../re.alg/re.except/nothing_to_do.pass.cpp | 12 + test/std/re/re.badexp/regex_error.pass.cpp | 97 + test/std/re/re.const/nothing_to_do.pass.cpp | 13 + .../re/re.const/re.err/error_type.pass.cpp | 144 + .../re.matchflag/match_flag_type.pass.cpp | 129 + .../re.matchflag/match_not_bol.pass.cpp | 51 + .../re.matchflag/match_not_eol.pass.cpp | 51 + .../re.matchflag/match_not_null.pass.cpp | 46 + .../re.synopt/syntax_option_type.pass.cpp | 115 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + .../nothing_to_do.pass.cpp | 13 + test/std/re/re.def/nothing_to_do.pass.cpp | 13 + test/std/re/re.general/nothing_to_do.pass.cpp | 13 + .../re.grammar/excessive_brace_count.pass.cpp | 41 + test/std/re/re.grammar/nothing_to_do.pass.cpp | 12 + test/std/re/re.iter/nothing_to_do.pass.cpp | 12 + .../re.regiter.cnstr/cnstr.fail.cpp | 36 + .../re.regiter.cnstr/cnstr.pass.cpp | 45 + .../re.regiter.cnstr/default.pass.cpp | 33 + .../re.regiter.comp/tested_elsewhere.pass.cpp | 19 + .../re.regiter.deref/deref.pass.cpp | 43 + .../re.regiter/re.regiter.incr/post.pass.cpp | 116 + test/std/re/re.iter/re.regiter/types.pass.cpp | 46 + .../re.tokiter.cnstr/array.fail.cpp | 39 + .../re.tokiter.cnstr/array.pass.cpp | 65 + .../re.tokiter.cnstr/default.pass.cpp | 33 + .../re.tokiter/re.tokiter.cnstr/init.fail.cpp | 36 + .../re.tokiter/re.tokiter.cnstr/init.pass.cpp | 65 + .../re.tokiter/re.tokiter.cnstr/int.fail.cpp | 35 + .../re.tokiter/re.tokiter.cnstr/int.pass.cpp | 76 + .../re.tokiter.cnstr/vector.fail.cpp | 40 + .../re.tokiter.cnstr/vector.pass.cpp | 129 + .../re.tokiter/re.tokiter.comp/equal.pass.cpp | 37 + .../re.tokiter.deref/deref.pass.cpp | 73 + .../re.tokiter/re.tokiter.incr/post.pass.cpp | 136 + test/std/re/re.iter/re.tokiter/types.pass.cpp | 46 + .../re.regex.assign/assign.il.pass.cpp | 34 + .../re.regex/re.regex.assign/assign.pass.cpp | 38 + .../assign_iter_iter_flag.pass.cpp | 47 + .../re.regex.assign/assign_ptr_flag.pass.cpp | 30 + .../assign_ptr_size_flag.pass.cpp | 26 + .../assign_string_flag.pass.cpp | 32 + .../re/re.regex/re.regex.assign/copy.pass.cpp | 27 + .../re/re.regex/re.regex.assign/il.pass.cpp | 28 + .../re/re.regex/re.regex.assign/ptr.pass.cpp | 26 + .../re.regex/re.regex.assign/string.pass.cpp | 27 + .../re.regex.const/constants.pass.cpp | 66 + .../re.regex.construct/awk_oct.pass.cpp | 29 + .../re.regex.construct/bad_backref.pass.cpp | 45 + .../re.regex.construct/bad_ctype.pass.cpp | 37 + .../re.regex.construct/bad_escape.pass.cpp | 48 + .../re.regex.construct/bad_repeat.pass.cpp | 44 + .../re.regex/re.regex.construct/copy.pass.cpp | 26 + .../re.regex.construct/deduct.fail.cpp | 45 + .../re.regex.construct/deduct.pass.cpp | 137 + .../re.regex.construct/default.pass.cpp | 33 + .../re.regex.construct/il_flg.pass.cpp | 69 + .../re.regex.construct/iter_iter.pass.cpp | 44 + .../re.regex.construct/iter_iter_flg.pass.cpp | 70 + .../re.regex/re.regex.construct/ptr.pass.cpp | 35 + .../re.regex.construct/ptr_flg.pass.cpp | 60 + .../re.regex.construct/ptr_size.pass.cpp | 39 + .../re.regex.construct/ptr_size_flg.pass.cpp | 61 + .../re.regex.construct/string.pass.cpp | 36 + .../re.regex.construct/string_flg.pass.cpp | 62 + .../re.regex/re.regex.locale/imbue.pass.cpp | 34 + .../re.regex.nonmemb/nothing_to_do.pass.cpp | 12 + .../re.regex.nmswap/swap.pass.cpp | 30 + .../tested_elsewhere.pass.cpp | 12 + .../re/re.regex/re.regex.swap/swap.pass.cpp | 29 + test/std/re/re.regex/types.pass.cpp | 42 + test/std/re/re.req/nothing_to_do.pass.cpp | 13 + .../re.results.acc/begin_end.pass.cpp | 40 + .../re.results.acc/cbegin_cend.pass.cpp | 40 + .../re.results/re.results.acc/index.pass.cpp | 54 + .../re.results/re.results.acc/length.pass.cpp | 37 + .../re.results.acc/position.pass.cpp | 37 + .../re.results/re.results.acc/prefix.pass.cpp | 35 + .../re/re.results/re.results.acc/str.pass.cpp | 37 + .../re.results/re.results.acc/suffix.pass.cpp | 35 + .../re.results.all/get_allocator.pass.cpp | 36 + .../re.results.const/allocator.pass.cpp | 36 + .../re.results.const/default.pass.cpp | 34 + .../re.results/re.results.form/form1.pass.cpp | 156 + .../re.results/re.results.form/form2.pass.cpp | 103 + .../re.results/re.results.form/form3.pass.cpp | 86 + .../re.results/re.results.form/form4.pass.cpp | 81 + .../re.results.nonmember/equal.pass.cpp | 47 + .../re.results/re.results.size/empty.fail.cpp | 27 + .../re.results/re.results.size/empty.pass.cpp | 37 + .../re.results.size/max_size.pass.cpp | 32 + .../re.results.state/ready.pass.cpp | 44 + .../re.results.swap/member_swap.pass.cpp | 40 + .../re.results.swap/non_member_swap.pass.cpp | 42 + test/std/re/re.results/types.pass.cpp | 52 + .../compare_string_type.pass.cpp | 48 + .../compare_sub_match.pass.cpp | 54 + .../compare_value_type_ptr.pass.cpp | 46 + .../re.submatch.members/default.pass.cpp | 34 + .../re.submatch.members/length.pass.cpp | 44 + .../operator_string.pass.cpp | 48 + .../re.submatch.members/str.pass.cpp | 48 + .../re.submatch.op/compare.pass.cpp | 288 + .../re.submatch.op/stream.pass.cpp | 43 + test/std/re/re.submatch/types.pass.cpp | 65 + test/std/re/re.syn/cmatch.pass.cpp | 21 + test/std/re/re.syn/cregex_iterator.pass.cpp | 21 + .../re/re.syn/cregex_token_iterator.pass.cpp | 21 + test/std/re/re.syn/csub_match.pass.cpp | 21 + test/std/re/re.syn/regex.pass.cpp | 21 + test/std/re/re.syn/smatch.pass.cpp | 21 + test/std/re/re.syn/sregex_iterator.pass.cpp | 21 + .../re/re.syn/sregex_token_iterator.pass.cpp | 21 + test/std/re/re.syn/ssub_match.pass.cpp | 21 + test/std/re/re.syn/wcmatch.pass.cpp | 21 + test/std/re/re.syn/wcregex_iterator.pass.cpp | 21 + .../re/re.syn/wcregex_token_iterator.pass.cpp | 21 + test/std/re/re.syn/wcsub_match.pass.cpp | 21 + test/std/re/re.syn/wregex.pass.cpp | 21 + test/std/re/re.syn/wsmatch.pass.cpp | 21 + test/std/re/re.syn/wsregex_iterator.pass.cpp | 21 + .../re/re.syn/wsregex_token_iterator.pass.cpp | 21 + test/std/re/re.syn/wssub_match.pass.cpp | 21 + test/std/re/re.traits/default.pass.cpp | 40 + test/std/re/re.traits/getloc.pass.cpp | 39 + test/std/re/re.traits/imbue.pass.cpp | 33 + test/std/re/re.traits/isctype.pass.cpp | 284 + test/std/re/re.traits/length.pass.cpp | 32 + .../re/re.traits/lookup_classname.pass.cpp | 247 + .../re/re.traits/lookup_collatename.pass.cpp | 193 + test/std/re/re.traits/transform.pass.cpp | 46 + .../re/re.traits/transform_primary.pass.cpp | 52 + test/std/re/re.traits/translate.pass.cpp | 35 + .../re/re.traits/translate_nocase.pass.cpp | 73 + test/std/re/re.traits/types.pass.cpp | 33 + test/std/re/re.traits/value.pass.cpp | 126 + .../basic.string.hash/enabled_hashes.pass.cpp | 31 + .../basic.string.hash/strings.pass.cpp | 52 + .../basic.string.literals/literal.pass.cpp | 48 + .../basic.string.literals/literal1.fail.cpp | 21 + .../basic.string.literals/literal1.pass.cpp | 21 + .../basic.string.literals/literal2.fail.cpp | 19 + .../basic.string.literals/literal2.pass.cpp | 21 + .../basic.string.literals/literal3.pass.cpp | 21 + .../basic.string/allocator_mismatch.fail.cpp | 18 + .../strings/basic.string/char.bad.fail.cpp | 53 + .../std/strings/basic.string/input_iterator.h | 41 + .../basic.string/string.access/at.pass.cpp | 78 + .../basic.string/string.access/back.pass.cpp | 56 + .../string.access/db_back.pass.cpp | 54 + .../string.access/db_cback.pass.cpp | 50 + .../string.access/db_cfront.pass.cpp | 50 + .../string.access/db_cindex.pass.cpp | 52 + .../string.access/db_front.pass.cpp | 54 + .../string.access/db_index.pass.cpp | 52 + .../basic.string/string.access/front.pass.cpp | 56 + .../basic.string/string.access/index.pass.cpp | 63 + .../string.capacity/capacity.pass.cpp | 64 + .../string.capacity/clear.pass.cpp | 57 + .../string.capacity/empty.fail.cpp | 28 + .../string.capacity/empty.pass.cpp | 44 + .../string.capacity/length.pass.cpp | 42 + .../string.capacity/max_size.pass.cpp | 74 + .../string.capacity/over_max_size.pass.cpp | 54 + .../string.capacity/reserve.pass.cpp | 128 + .../string.capacity/resize_size.pass.cpp | 89 + .../string.capacity/resize_size_char.pass.cpp | 89 + .../string.capacity/shrink_to_fit.pass.cpp | 63 + .../string.capacity/size.pass.cpp | 42 + .../string.cons/T_size_size.pass.cpp | 187 + .../basic.string/string.cons/alloc.pass.cpp | 96 + .../string.cons/brace_assignment.pass.cpp | 36 + .../string.cons/char_assignment.pass.cpp | 50 + .../basic.string/string.cons/copy.pass.cpp | 50 + .../string.cons/copy_alloc.pass.cpp | 131 + .../string.cons/copy_assignment.pass.cpp | 80 + .../string.cons/default_noexcept.pass.cpp | 39 + .../string.cons/dtor_noexcept.pass.cpp | 52 + .../implicit_deduction_guides.pass.cpp | 317 + .../string.cons/initializer_list.pass.cpp | 44 + .../initializer_list_assignment.pass.cpp | 34 + .../string.cons/iter_alloc.pass.cpp | 120 + .../string.cons/iter_alloc_deduction.fail.cpp | 56 + .../string.cons/iter_alloc_deduction.pass.cpp | 93 + .../basic.string/string.cons/move.pass.cpp | 52 + .../string.cons/move_alloc.pass.cpp | 78 + .../string.cons/move_assign_noexcept.pass.cpp | 97 + .../string.cons/move_assignment.pass.cpp | 74 + .../string.cons/move_noexcept.pass.cpp | 43 + .../string.cons/pointer_alloc.pass.cpp | 89 + .../string.cons/pointer_assignment.pass.cpp | 73 + .../string.cons/pointer_size_alloc.pass.cpp | 94 + .../string.cons/size_char_alloc.pass.cpp | 124 + .../string.cons/string_view.fail.cpp | 23 + .../string.cons/string_view.pass.cpp | 111 + .../string_view_assignment.pass.cpp | 74 + .../string_view_deduction.fail.cpp | 41 + .../string_view_deduction.pass.cpp | 95 + .../string_view_size_size_deduction.fail.cpp | 47 + .../string_view_size_size_deduction.pass.cpp | 99 + .../basic.string/string.cons/substr.pass.cpp | 228 + .../string.ends_with/ends_with.char.pass.cpp | 34 + .../string.ends_with/ends_with.ptr.pass.cpp | 63 + .../ends_with.string_view.pass.cpp | 72 + .../string.iterators/begin.pass.cpp | 48 + .../string.iterators/cbegin.pass.cpp | 45 + .../string.iterators/cend.pass.cpp | 41 + .../string.iterators/crbegin.pass.cpp | 45 + .../string.iterators/crend.pass.cpp | 41 + .../string.iterators/db_iterators_2.pass.cpp | 52 + .../string.iterators/db_iterators_3.pass.cpp | 52 + .../string.iterators/db_iterators_4.pass.cpp | 54 + .../string.iterators/db_iterators_5.pass.cpp | 58 + .../string.iterators/db_iterators_6.pass.cpp | 56 + .../string.iterators/db_iterators_7.pass.cpp | 56 + .../string.iterators/db_iterators_8.pass.cpp | 52 + .../string.iterators/end.pass.cpp | 51 + .../string.iterators/iterators.pass.cpp | 73 + .../string.iterators/rbegin.pass.cpp | 48 + .../string.iterators/rend.pass.cpp | 51 + .../string.modifiers/nothing_to_do.pass.cpp | 12 + .../string_append/T_size_size.pass.cpp | 200 + .../string_append/initializer_list.pass.cpp | 35 + .../string_append/iterator.pass.cpp | 223 + .../string_append/pointer.pass.cpp | 80 + .../string_append/pointer_size.pass.cpp | 89 + .../string_append/push_back.pass.cpp | 60 + .../string_append/size_char.pass.cpp | 64 + .../string_append/string.pass.cpp | 89 + .../string_append/string_size_size.pass.cpp | 137 + .../string_append/string_view.pass.cpp | 83 + .../string_assign/T_size_size.pass.cpp | 195 + .../string_assign/initializer_list.pass.cpp | 35 + .../string_assign/iterator.pass.cpp | 208 + .../string_assign/pointer.pass.cpp | 78 + .../string_assign/pointer_size.pass.cpp | 89 + .../string_assign/rv_string.pass.cpp | 81 + .../string_assign/size_char.pass.cpp | 64 + .../string_assign/string.pass.cpp | 117 + .../string_assign/string_size_size.pass.cpp | 137 + .../string_assign/string_view.pass.cpp | 105 + .../string_copy/copy.pass.cpp | 181 + .../string_erase/iter.pass.cpp | 66 + .../string_erase/iter_iter.pass.cpp | 151 + .../string_erase/pop_back.pass.cpp | 46 + .../string_erase/size_size.pass.cpp | 302 + .../string_insert/iter_char.pass.cpp | 76 + .../iter_initializer_list.pass.cpp | 37 + .../string_insert/iter_iter_iter.pass.cpp | 222 + .../string_insert/iter_size_char.pass.cpp | 170 + .../string_insert/size_T_size_size.pass.cpp | 1842 ++ .../string_insert/size_pointer.pass.cpp | 237 + .../string_insert/size_pointer_size.pass.cpp | 718 + .../string_insert/size_size_char.pass.cpp | 222 + .../string_insert/size_string.pass.cpp | 230 + .../size_string_size_size.pass.cpp | 1803 ++ .../string_insert/string_view.pass.cpp | 239 + .../string_op_plus_equal/char.pass.cpp | 47 + .../initializer_list.pass.cpp | 34 + .../string_op_plus_equal/pointer.pass.cpp | 79 + .../string_op_plus_equal/string.pass.cpp | 89 + .../iter_iter_initializer_list.pass.cpp | 34 + .../iter_iter_iter_iter.pass.cpp | 1040 + .../string_replace/iter_iter_pointer.pass.cpp | 301 + .../iter_iter_pointer_size.pass.cpp | 991 + .../iter_iter_size_char.pass.cpp | 285 + .../string_replace/iter_iter_string.pass.cpp | 293 + .../iter_iter_string_view.pass.cpp | 286 + .../size_size_T_size_size.pass.cpp | 6029 ++++ .../string_replace/size_size_pointer.pass.cpp | 383 + .../size_size_pointer_size.pass.cpp | 1335 + .../size_size_size_char.pass.cpp | 384 + .../string_replace/size_size_string.pass.cpp | 391 + .../size_size_string_size_size.pass.cpp | 5985 ++++ .../size_size_string_view.pass.cpp | 384 + .../string_swap/swap.pass.cpp | 77 + .../string.nonmembers/nothing_to_do.pass.cpp | 12 + .../string.io/get_line.pass.cpp | 81 + .../string.io/get_line_delim.pass.cpp | 93 + .../string.io/get_line_delim_rv.pass.cpp | 49 + .../string.io/get_line_rv.pass.cpp | 49 + .../string.io/stream_extract.pass.cpp | 117 + .../string.io/stream_insert.pass.cpp | 91 + .../string.special/swap.pass.cpp | 79 + .../string.special/swap_noexcept.pass.cpp | 85 + .../string_op!=/pointer_string.pass.cpp | 69 + .../string_op!=/string_pointer.pass.cpp | 69 + .../string_op!=/string_string.pass.cpp | 70 + .../string_op!=/string_string_view.pass.cpp | 70 + .../string_op!=/string_view_string.pass.cpp | 70 + .../string_op+/char_string.pass.cpp | 70 + .../string_op+/pointer_string.pass.cpp | 131 + .../string_op+/string_char.pass.cpp | 70 + .../string_op+/string_pointer.pass.cpp | 130 + .../string_op+/string_string.pass.cpp | 249 + .../string_operator==/pointer_string.pass.cpp | 69 + .../string_operator==/string_pointer.pass.cpp | 69 + .../string_operator==/string_string.pass.cpp | 70 + .../string_string_view.pass.cpp | 70 + .../string_view_string.pass.cpp | 70 + .../string_opgt/pointer_string.pass.cpp | 69 + .../string_opgt/string_pointer.pass.cpp | 69 + .../string_opgt/string_string.pass.cpp | 70 + .../string_opgt/string_string_view.pass.cpp | 70 + .../string_opgt/string_view_string.pass.cpp | 70 + .../string_opgt=/pointer_string.pass.cpp | 69 + .../string_opgt=/string_pointer.pass.cpp | 69 + .../string_opgt=/string_string.pass.cpp | 70 + .../string_opgt=/string_string_view.pass.cpp | 70 + .../string_opgt=/string_view_string.pass.cpp | 70 + .../string_oplt/pointer_string.pass.cpp | 69 + .../string_oplt/string_pointer.pass.cpp | 69 + .../string_oplt/string_string.pass.cpp | 70 + .../string_oplt/string_string_view.pass.cpp | 70 + .../string_oplt/string_view_string.pass.cpp | 70 + .../string_oplt=/pointer_string.pass.cpp | 69 + .../string_oplt=/string_pointer.pass.cpp | 69 + .../string_oplt=/string_string.pass.cpp | 70 + .../string_oplt=/string_string_view.pass.cpp | 70 + .../string_oplt=/string_view_string.pass.cpp | 70 + .../string.ops/nothing_to_do.pass.cpp | 12 + .../string.accessors/c_str.pass.cpp | 52 + .../string.ops/string.accessors/data.pass.cpp | 78 + .../string.accessors/get_allocator.pass.cpp | 47 + .../string_compare/pointer.pass.cpp | 77 + .../size_size_T_size_size.pass.cpp | 5993 ++++ .../string_compare/size_size_pointer.pass.cpp | 381 + .../size_size_pointer_size.pass.cpp | 1332 + .../string_compare/size_size_string.pass.cpp | 387 + .../size_size_string_size_size.pass.cpp | 5962 ++++ .../size_size_string_view.pass.cpp | 383 + .../string.ops/string_compare/string.pass.cpp | 85 + .../string_compare/string_view.pass.cpp | 79 + .../char_size.pass.cpp | 102 + .../pointer_size.pass.cpp | 158 + .../pointer_size_size.pass.cpp | 387 + .../string_size.pass.cpp | 165 + .../string_view_size.pass.cpp | 159 + .../string_find.first.of/char_size.pass.cpp | 98 + .../pointer_size.pass.cpp | 158 + .../pointer_size_size.pass.cpp | 387 + .../string_find.first.of/string_size.pass.cpp | 165 + .../string_view_size.pass.cpp | 159 + .../char_size.pass.cpp | 98 + .../pointer_size.pass.cpp | 158 + .../pointer_size_size.pass.cpp | 387 + .../string_size.pass.cpp | 165 + .../string_view_size.pass.cpp | 159 + .../string_find.last.of/char_size.pass.cpp | 98 + .../string_find.last.of/pointer_size.pass.cpp | 158 + .../pointer_size_size.pass.cpp | 387 + .../string_find.last.of/string_size.pass.cpp | 165 + .../string_view_size.pass.cpp | 159 + .../string.ops/string_find/char_size.pass.cpp | 98 + .../string_find/pointer_size.pass.cpp | 164 + .../string_find/pointer_size_size.pass.cpp | 387 + .../string_find/string_size.pass.cpp | 165 + .../string_find/string_view_size.pass.cpp | 159 + .../string_rfind/char_size.pass.cpp | 98 + .../string_rfind/pointer_size.pass.cpp | 165 + .../string_rfind/pointer_size_size.pass.cpp | 387 + .../string_rfind/string_size.pass.cpp | 165 + .../string_rfind/string_view_size.pass.cpp | 159 + .../string.ops/string_substr/substr.pass.cpp | 177 + .../string.require/contiguous.pass.cpp | 53 + .../starts_with.char.pass.cpp | 34 + .../starts_with.ptr.pass.cpp | 62 + .../starts_with.string_view.pass.cpp | 72 + test/std/strings/basic.string/test_traits.h | 19 + .../basic.string/traits_mismatch.fail.cpp | 18 + test/std/strings/basic.string/types.pass.cpp | 85 + test/std/strings/c.strings/cctype.pass.cpp | 103 + test/std/strings/c.strings/cstring.pass.cpp | 61 + test/std/strings/c.strings/cuchar.pass.cpp | 18 + test/std/strings/c.strings/cwchar.pass.cpp | 129 + test/std/strings/c.strings/cwctype.pass.cpp | 114 + .../nothing_to_do.pass.cpp | 12 + .../assign2.pass.cpp | 40 + .../assign3.pass.cpp | 27 + .../compare.pass.cpp | 57 + .../copy.pass.cpp | 29 + .../eof.pass.cpp | 22 + .../eq.pass.cpp | 23 + .../eq_int_type.pass.cpp | 26 + .../find.pass.cpp | 46 + .../length.pass.cpp | 42 + .../lt.pass.cpp | 33 + .../move.pass.cpp | 33 + .../not_eof.pass.cpp | 26 + .../to_char_type.pass.cpp | 24 + .../to_int_type.pass.cpp | 24 + .../types.pass.cpp | 30 + .../assign2.pass.cpp | 44 + .../assign3.pass.cpp | 29 + .../compare.pass.cpp | 62 + .../copy.pass.cpp | 31 + .../eof.pass.cpp | 25 + .../eq.pass.cpp | 29 + .../eq_int_type.pass.cpp | 32 + .../find.pass.cpp | 48 + .../length.pass.cpp | 45 + .../lt.pass.cpp | 29 + .../move.pass.cpp | 35 + .../not_eof.pass.cpp | 32 + .../to_char_type.pass.cpp | 30 + .../to_int_type.pass.cpp | 30 + .../types.pass.cpp | 33 + .../assign2.pass.cpp | 44 + .../assign3.pass.cpp | 29 + .../compare.pass.cpp | 61 + .../copy.pass.cpp | 31 + .../eof.pass.cpp | 25 + .../eq.pass.cpp | 29 + .../eq_int_type.pass.cpp | 32 + .../find.pass.cpp | 48 + .../length.pass.cpp | 45 + .../lt.pass.cpp | 29 + .../move.pass.cpp | 35 + .../not_eof.pass.cpp | 32 + .../to_char_type.pass.cpp | 30 + .../to_int_type.pass.cpp | 30 + .../types.pass.cpp | 33 + .../assign2.pass.cpp | 40 + .../assign3.pass.cpp | 27 + .../compare.pass.cpp | 57 + .../copy.pass.cpp | 29 + .../eof.pass.cpp | 22 + .../eq.pass.cpp | 23 + .../eq_int_type.pass.cpp | 26 + .../find.pass.cpp | 46 + .../length.pass.cpp | 41 + .../lt.pass.cpp | 23 + .../move.pass.cpp | 33 + .../not_eof.pass.cpp | 26 + .../to_char_type.pass.cpp | 24 + .../to_int_type.pass.cpp | 24 + .../types.pass.cpp | 30 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../char.traits/nothing_to_do.pass.cpp | 12 + .../strings/string.classes/typedefs.pass.cpp | 31 + .../strings/string.conversions/stod.pass.cpp | 188 + .../strings/string.conversions/stof.pass.cpp | 189 + .../strings/string.conversions/stoi.pass.cpp | 112 + .../strings/string.conversions/stol.pass.cpp | 116 + .../strings/string.conversions/stold.pass.cpp | 192 + .../strings/string.conversions/stoll.pass.cpp | 115 + .../strings/string.conversions/stoul.pass.cpp | 114 + .../string.conversions/stoull.pass.cpp | 115 + .../string.conversions/to_string.pass.cpp | 126 + .../string.conversions/to_wstring.pass.cpp | 126 + .../std/strings/string.view/char.bad.fail.cpp | 53 + .../string.view.access/at.pass.cpp | 63 + .../string.view.access/back.pass.cpp | 50 + .../string.view.access/data.pass.cpp | 54 + .../string.view.access/front.pass.cpp | 50 + .../string.view.access/index.pass.cpp | 53 + .../string.view.capacity/capacity.pass.cpp | 98 + .../string.view.capacity/empty.fail.cpp | 28 + .../opeq.string_view.pointer.pass.cpp | 69 + .../opeq.string_view.string.pass.cpp | 51 + .../opeq.string_view.string_view.pass.cpp | 62 + .../opge.string_view.pointer.pass.cpp | 72 + .../opge.string_view.string.pass.cpp | 50 + .../opge.string_view.string_view.pass.cpp | 65 + .../opgt.string_view.pointer.pass.cpp | 72 + .../opgt.string_view.string.pass.cpp | 50 + .../opgt.string_view.string_view.pass.cpp | 65 + .../ople.string_view.pointer.pass.cpp | 72 + .../ople.string_view.string.pass.cpp | 50 + .../ople.string_view.string_view.pass.cpp | 65 + .../oplt.string_view.pointer.pass.cpp | 72 + .../oplt.string_view.string.pass.cpp | 50 + .../oplt.string_view.string_view.pass.cpp | 65 + .../opne.string_view.pointer.pass.cpp | 70 + .../opne.string_view.string.pass.cpp | 50 + .../opne.string_view.string_view.pass.cpp | 62 + .../string.view.cons/assign.pass.cpp | 52 + .../string.view.cons/default.pass.cpp | 50 + .../string.view.cons/from_literal.pass.cpp | 69 + .../string.view.cons/from_ptr_len.pass.cpp | 86 + .../string.view.cons/from_string.pass.cpp | 59 + .../string.view.cons/from_string1.fail.cpp | 32 + .../string.view.cons/from_string2.fail.cpp | 32 + .../implicit_deduction_guides.pass.cpp | 65 + .../string.view.find/find_char_size.pass.cpp | 85 + .../find_first_not_of_char_size.pass.cpp | 85 + .../find_first_not_of_pointer_size.pass.cpp | 166 + ...nd_first_not_of_pointer_size_size.pass.cpp | 393 + ...ind_first_not_of_string_view_size.pass.cpp | 148 + .../find_first_of_char_size.pass.cpp | 83 + .../find_first_of_pointer_size.pass.cpp | 166 + .../find_first_of_pointer_size_size.pass.cpp | 393 + .../find_first_of_string_view_size.pass.cpp | 148 + .../find_last_not_of_char_size.pass.cpp | 83 + .../find_last_not_of_pointer_size.pass.cpp | 166 + ...ind_last_not_of_pointer_size_size.pass.cpp | 393 + ...find_last_not_of_string_view_size.pass.cpp | 148 + .../find_last_of_char_size.pass.cpp | 83 + .../find_last_of_pointer_size.pass.cpp | 166 + .../find_last_of_pointer_size_size.pass.cpp | 393 + .../find_last_of_string_view_size.pass.cpp | 148 + .../find_pointer_size.pass.cpp | 172 + .../find_pointer_size_size.pass.cpp | 394 + .../find_string_view_size.pass.cpp | 165 + .../string.view.find/rfind_char_size.pass.cpp | 84 + .../rfind_pointer_size.pass.cpp | 172 + .../rfind_pointer_size_size.pass.cpp | 393 + .../rfind_string_view_size.pass.cpp | 165 + .../string.view.hash/enabled_hashes.pass.cpp | 31 + .../string.view.hash/string_view.pass.cpp | 67 + .../string.view.io/stream_insert.pass.cpp | 58 + .../string.view.iterators/begin.pass.cpp | 79 + .../string.view.iterators/end.pass.cpp | 88 + .../string.view.iterators/rbegin.pass.cpp | 80 + .../string.view.iterators/rend.pass.cpp | 88 + .../remove_prefix.pass.cpp | 78 + .../remove_suffix.pass.cpp | 78 + .../string.view.modifiers/swap.pass.cpp | 76 + .../string.view.nonmem/quoted.pass.cpp | 214 + .../string.view.ops/compare.pointer.pass.cpp | 127 + .../compare.pointer_size.pass.cpp | 452 + .../compare.size_size_sv.pass.cpp | 401 + ...compare.size_size_sv_pointer_size.pass.cpp | 1352 + .../compare.size_size_sv_size_size.pass.cpp | 5847 ++++ .../string.view.ops/compare.sv.pass.cpp | 122 + .../string.view/string.view.ops/copy.pass.cpp | 102 + .../string.view.ops/substr.pass.cpp | 121 + .../string.view.synop/nothing_to_do.pass.cpp | 12 + .../ends_with.char.pass.cpp | 47 + .../ends_with.ptr.pass.cpp | 104 + .../ends_with.string_view.pass.cpp | 104 + .../nothing_to_do.pass.cpp | 12 + .../starts_with.char.pass.cpp | 47 + .../starts_with.ptr.pass.cpp | 104 + .../starts_with.string_view.pass.cpp | 104 + .../string_view.literals/literal.pass.cpp | 63 + .../string_view.literals/literal1.fail.cpp | 23 + .../string_view.literals/literal1.pass.cpp | 25 + .../string_view.literals/literal2.fail.cpp | 21 + .../string_view.literals/literal2.pass.cpp | 25 + .../string_view.literals/literal3.pass.cpp | 25 + .../string.view/traits_mismatch.fail.cpp | 18 + test/std/strings/string.view/types.pass.cpp | 77 + .../strings.general/nothing_to_do.pass.cpp | 13 + .../futures/futures.async/async.fail.cpp | 38 + .../futures/futures.async/async.pass.cpp | 155 + .../futures/futures.async/async_race.pass.cpp | 68 + .../default_error_condition.pass.cpp | 27 + .../equivalent_error_code_int.pass.cpp | 26 + .../equivalent_int_error_condition.pass.cpp | 27 + .../futures.errors/future_category.pass.cpp | 24 + .../futures.errors/make_error_code.pass.cpp | 28 + .../make_error_condition.pass.cpp | 30 + .../futures.future_error/code.pass.cpp | 57 + .../futures.future_error/types.pass.cpp | 23 + .../futures.future_error/what.pass.cpp | 54 + .../futures.overview/future_errc.pass.cpp | 40 + .../futures.overview/future_status.pass.cpp | 28 + .../is_error_code_enum_future_errc.pass.cpp | 25 + .../futures/futures.overview/launch.pass.cpp | 47 + .../futures.promise/alloc_ctor.pass.cpp | 85 + .../futures.promise/copy_assign.fail.cpp | 51 + .../futures.promise/copy_ctor.fail.cpp | 51 + .../futures/futures.promise/default.pass.cpp | 39 + .../futures/futures.promise/dtor.pass.cpp | 127 + .../futures.promise/get_future.pass.cpp | 60 + .../futures.promise/move_assign.pass.cpp | 97 + .../futures.promise/move_ctor.pass.cpp | 91 + .../futures.promise/set_exception.pass.cpp | 49 + .../set_exception_at_thread_exit.pass.cpp | 45 + .../futures.promise/set_lvalue.pass.cpp | 48 + .../set_lvalue_at_thread_exit.pass.cpp | 39 + .../futures.promise/set_rvalue.pass.cpp | 64 + .../set_rvalue_at_thread_exit.pass.cpp | 35 + .../set_value_at_thread_exit_const.pass.cpp | 36 + .../set_value_at_thread_exit_void.pass.cpp | 40 + .../futures.promise/set_value_const.pass.cpp | 72 + .../futures.promise/set_value_void.pass.cpp | 41 + .../futures/futures.promise/swap.pass.cpp | 85 + .../futures.promise/uses_allocator.pass.cpp | 28 + .../copy_assign.pass.cpp | 81 + .../futures.shared_future/copy_ctor.pass.cpp | 75 + .../ctor_future.pass.cpp | 69 + .../futures.shared_future/default.pass.cpp | 35 + .../futures.shared_future/dtor.pass.cpp | 70 + .../futures.shared_future/get.pass.cpp | 154 + .../move_assign.pass.cpp | 75 + .../futures.shared_future/move_ctor.pass.cpp | 69 + .../futures.shared_future/wait.pass.cpp | 89 + .../futures.shared_future/wait_for.pass.cpp | 98 + .../futures.shared_future/wait_until.pass.cpp | 130 + .../futures.state/nothing_to_do.pass.cpp | 13 + .../futures.task.members/assign_copy.fail.cpp | 27 + .../futures.task.members/assign_move.pass.cpp | 51 + .../futures.task.members/ctor1.fail.cpp | 36 + .../futures.task.members/ctor2.fail.cpp | 34 + .../futures.task.members/ctor_copy.fail.cpp | 28 + .../ctor_default.pass.cpp | 28 + .../futures.task.members/ctor_func.pass.cpp | 80 + .../ctor_func_alloc.pass.cpp | 127 + .../futures.task.members/ctor_move.pass.cpp | 49 + .../futures.task.members/dtor.pass.cpp | 68 + .../futures.task.members/get_future.pass.cpp | 69 + .../make_ready_at_thread_exit.pass.cpp | 119 + .../futures.task.members/operator.pass.cpp | 120 + .../futures.task.members/reset.pass.cpp | 63 + .../futures.task.members/swap.pass.cpp | 51 + .../futures.task.nonmembers/swap.pass.cpp | 53 + .../uses_allocator.pass.cpp | 34 + .../copy_assign.fail.cpp | 51 + .../futures.unique_future/copy_ctor.fail.cpp | 51 + .../futures.unique_future/default.pass.cpp | 35 + .../futures.unique_future/dtor.pass.cpp | 70 + .../futures.unique_future/get.pass.cpp | 154 + .../move_assign.pass.cpp | 74 + .../futures.unique_future/move_ctor.pass.cpp | 68 + .../futures.unique_future/share.pass.cpp | 75 + .../futures.unique_future/wait.pass.cpp | 89 + .../futures.unique_future/wait_for.pass.cpp | 98 + .../futures.unique_future/wait_until.pass.cpp | 130 + test/std/thread/macro.pass.cpp | 23 + .../thread.condition/cv_status.pass.cpp | 23 + .../notify_all_at_thread_exit.pass.cpp | 49 + .../thread.condition.condvar/assign.fail.cpp | 24 + .../thread.condition.condvar/copy.fail.cpp | 23 + .../thread.condition.condvar/default.pass.cpp | 24 + .../destructor.pass.cpp | 58 + .../notify_all.pass.cpp | 69 + .../notify_one.pass.cpp | 99 + .../thread.condition.condvar/wait.pass.cpp | 52 + .../wait_for.pass.cpp | 87 + .../wait_for_pred.pass.cpp | 96 + .../wait_pred.pass.cpp | 62 + .../wait_until.pass.cpp | 102 + .../wait_until_pred.pass.cpp | 113 + .../assign.fail.cpp | 24 + .../thread.condition.condvarany/copy.fail.cpp | 23 + .../default.pass.cpp | 24 + .../destructor.pass.cpp | 59 + .../notify_all.pass.cpp | 73 + .../notify_one.pass.cpp | 98 + .../thread.condition.condvarany/wait.pass.cpp | 57 + .../wait_for.pass.cpp | 90 + .../wait_for_pred.pass.cpp | 102 + .../wait_pred.pass.cpp | 66 + .../wait_terminates.sh.cpp | 134 + .../wait_until.pass.cpp | 105 + .../wait_until_pred.pass.cpp | 117 + .../thread.general/nothing_to_do.pass.cpp | 12 + .../thread.lock.algorithm/lock.pass.cpp | 522 + .../thread.lock.algorithm/try_lock.pass.cpp | 526 + .../thread.lock.guard/adopt_lock.pass.cpp | 51 + .../thread.lock.guard/assign.fail.cpp | 25 + .../thread.lock.guard/copy.fail.cpp | 23 + .../thread.lock.guard/mutex.fail.cpp | 24 + .../thread.lock.guard/mutex.pass.cpp | 60 + .../thread.lock.guard/types.pass.cpp | 29 + .../thread.lock.scoped/adopt_lock.pass.cpp | 72 + .../thread.lock.scoped/assign.fail.cpp | 50 + .../thread.lock.scoped/copy.fail.cpp | 46 + .../thread.lock.scoped/mutex.fail.cpp | 53 + .../thread.lock.scoped/mutex.pass.cpp | 155 + .../thread.lock.scoped/types.pass.cpp | 78 + .../thread.lock.shared/lit.local.cfg | 2 + .../copy_assign.fail.cpp | 27 + .../copy_ctor.fail.cpp | 25 + .../thread.lock.shared.cons/default.pass.cpp | 27 + .../move_assign.pass.cpp | 50 + .../move_ctor.pass.cpp | 45 + .../thread.lock.shared.cons/mutex.pass.cpp | 103 + .../mutex_adopt_lock.pass.cpp | 41 + .../mutex_defer_lock.pass.cpp | 39 + .../mutex_duration.pass.cpp | 92 + .../mutex_time_point.pass.cpp | 91 + .../mutex_try_to_lock.pass.cpp | 69 + .../thread.lock.shared.locking/lock.pass.cpp | 92 + .../try_lock.pass.cpp | 71 + .../try_lock_for.pass.cpp | 76 + .../try_lock_until.pass.cpp | 76 + .../unlock.pass.cpp | 63 + .../member_swap.pass.cpp | 40 + .../nonmember_swap.pass.cpp | 41 + .../thread.lock.shared.mod/release.pass.cpp | 48 + .../thread.lock.shared.obs/mutex.pass.cpp | 33 + .../thread.lock.shared.obs/op_bool.pass.cpp | 33 + .../thread.lock.shared.obs/owns_lock.pass.cpp | 33 + .../thread.lock.shared/types.pass.cpp | 31 + .../copy_assign.fail.cpp | 33 + .../copy_ctor.fail.cpp | 31 + .../thread.lock.unique.cons/default.pass.cpp | 26 + .../move_assign.pass.cpp | 48 + .../move_ctor.pass.cpp | 44 + .../thread.lock.unique.cons/mutex.pass.cpp | 60 + .../mutex_adopt_lock.pass.cpp | 40 + .../mutex_defer_lock.pass.cpp | 38 + .../mutex_duration.pass.cpp | 70 + .../mutex_time_point.pass.cpp | 70 + .../mutex_try_to_lock.pass.cpp | 64 + .../thread.lock.unique.locking/lock.pass.cpp | 75 + .../try_lock.pass.cpp | 70 + .../try_lock_for.pass.cpp | 75 + .../try_lock_until.pass.cpp | 75 + .../unlock.pass.cpp | 62 + .../member_swap.pass.cpp | 38 + .../nonmember_swap.pass.cpp | 39 + .../thread.lock.unique.mod/release.pass.cpp | 46 + .../thread.lock.unique.obs/mutex.pass.cpp | 31 + .../thread.lock.unique.obs/op_bool.pass.cpp | 31 + .../thread.lock.unique.obs/owns_lock.pass.cpp | 31 + .../thread.lock.unique/types.pass.cpp | 29 + .../thread.mutex/thread.lock/types.pass.cpp | 34 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../thread.mutex.class/assign.fail.cpp | 23 + .../thread.mutex.class/copy.fail.cpp | 22 + .../thread.mutex.class/default.pass.cpp | 25 + .../thread.mutex.class/lock.pass.cpp | 50 + .../thread.mutex.class/try_lock.pass.cpp | 52 + .../thread.mutex.recursive/assign.fail.cpp | 23 + .../thread.mutex.recursive/copy.fail.cpp | 22 + .../thread.mutex.recursive/default.pass.cpp | 23 + .../thread.mutex.recursive/lock.pass.cpp | 52 + .../thread.mutex.recursive/try_lock.pass.cpp | 54 + .../lit.local.cfg | 2 + .../nothing_to_do.pass.cpp | 12 + .../thread.shared_mutex.class/assign.fail.cpp | 26 + .../thread.shared_mutex.class/copy.fail.cpp | 25 + .../default.pass.cpp | 24 + .../thread.shared_mutex.class/lock.pass.cpp | 64 + .../lock_shared.pass.cpp | 88 + .../try_lock.pass.cpp | 53 + .../try_lock_shared.pass.cpp | 60 + .../lit.local.cfg | 2 + .../nothing_to_do.pass.cpp | 12 + .../assign.fail.cpp | 24 + .../copy.fail.cpp | 23 + .../default.pass.cpp | 24 + .../lock.pass.cpp | 66 + .../lock_shared.pass.cpp | 90 + .../try_lock.pass.cpp | 53 + .../try_lock_for.pass.cpp | 84 + .../try_lock_shared.pass.cpp | 68 + .../try_lock_shared_for.pass.cpp | 90 + .../try_lock_shared_until.pass.cpp | 90 + .../try_lock_until.pass.cpp | 84 + .../try_lock_until_deadlock_bug.pass.cpp | 70 + .../nothing_to_do.pass.cpp | 12 + .../thread.timedmutex.class/assign.fail.cpp | 23 + .../thread.timedmutex.class/copy.fail.cpp | 22 + .../thread.timedmutex.class/default.pass.cpp | 23 + .../thread.timedmutex.class/lock.pass.cpp | 50 + .../thread.timedmutex.class/try_lock.pass.cpp | 52 + .../try_lock_for.pass.cpp | 67 + .../try_lock_until.pass.cpp | 67 + .../assign.fail.cpp | 23 + .../thread.timedmutex.recursive/copy.fail.cpp | 22 + .../default.pass.cpp | 23 + .../thread.timedmutex.recursive/lock.pass.cpp | 52 + .../try_lock.pass.cpp | 54 + .../try_lock_for.pass.cpp | 69 + .../try_lock_until.pass.cpp | 69 + .../thread.once/nothing_to_do.pass.cpp | 12 + .../thread.once.callonce/call_once.pass.cpp | 257 + .../thread.once.callonce/race.pass.cpp | 48 + .../thread.once.onceflag/assign.fail.cpp | 23 + .../thread.once.onceflag/copy.fail.cpp | 22 + .../thread.once.onceflag/default.pass.cpp | 31 + .../thread/thread.req/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../thread.req.native/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../thread.req.timing/nothing_to_do.pass.cpp | 12 + .../thread.thread.algorithm/swap.pass.cpp | 58 + .../thread.thread.assign/copy.fail.cpp | 51 + .../thread.thread.assign/move.pass.cpp | 63 + .../thread.thread.assign/move2.pass.cpp | 65 + .../thread.thread.constr/F.pass.cpp | 198 + .../thread.thread.constr/constr.fail.cpp | 26 + .../thread.thread.constr/copy.fail.cpp | 66 + .../thread.thread.constr/default.pass.cpp | 25 + .../thread.thread.constr/move.pass.cpp | 70 + .../thread.thread.destr/dtor.pass.cpp | 64 + .../thread.thread.id/assign.pass.cpp | 29 + .../thread.thread.id/copy.pass.cpp | 26 + .../thread.thread.id/default.pass.cpp | 25 + .../thread.thread.id/enabled_hashes.pass.cpp | 27 + .../thread.thread.id/eq.pass.cpp | 32 + .../thread.thread.id/lt.pass.cpp | 43 + .../thread.thread.id/stream.pass.cpp | 29 + .../thread.thread.id/thread_id.pass.cpp | 38 + .../thread.thread.member/detach.pass.cpp | 90 + .../thread.thread.member/get_id.pass.cpp | 58 + .../thread.thread.member/join.pass.cpp | 77 + .../thread.thread.member/joinable.pass.cpp | 54 + .../thread.thread.member/swap.pass.cpp | 58 + .../hardware_concurrency.pass.cpp | 24 + .../thread.thread.this/get_id.pass.cpp | 23 + .../sleep_for_tested_elsewhere.pass.cpp | 22 + .../thread.thread.this/sleep_until.pass.cpp | 33 + .../thread.thread.this/yield.pass.cpp | 22 + .../allocator.adaptor.cnstr/allocs.pass.cpp | 117 + .../converting_copy.pass.cpp | 68 + .../converting_move.pass.cpp | 73 + .../allocator.adaptor.cnstr/copy.pass.cpp | 68 + .../allocator.adaptor.cnstr/default.pass.cpp | 57 + .../allocate_size.fail.cpp | 29 + .../allocate_size.pass.cpp | 48 + .../allocate_size_hint.fail.cpp | 29 + .../allocate_size_hint.pass.cpp | 69 + .../construct.pass.cpp | 188 + .../construct_pair.pass.cpp | 142 + .../construct_pair_const_lvalue_pair.pass.cpp | 158 + .../construct_pair_piecewise.pass.cpp | 159 + .../construct_pair_rvalue.pass.cpp | 158 + .../construct_pair_values.pass.cpp | 150 + .../construct_type.pass.cpp | 133 + .../deallocate.pass.cpp | 46 + .../destroy.pass.cpp | 69 + .../inner_allocator.pass.cpp | 44 + .../max_size.pass.cpp | 42 + .../outer_allocator.pass.cpp | 43 + ...ct_on_container_copy_construction.pass.cpp | 54 + .../allocator_pointers.pass.cpp | 125 + .../inner_allocator_type.pass.cpp | 37 + .../is_always_equal.pass.cpp | 72 + ...gate_on_container_copy_assignment.pass.cpp | 38 + ...gate_on_container_move_assignment.pass.cpp | 38 + .../propagate_on_container_swap.pass.cpp | 37 + .../copy_assign.pass.cpp | 72 + .../scoped.adaptor.operators/eq.pass.cpp | 62 + .../move_assign.pass.cpp | 72 + .../allocator.adaptor/types.pass.cpp | 100 + .../any/any.class/any.assign/copy.pass.cpp | 204 + .../any/any.class/any.assign/move.pass.cpp | 115 + .../any/any.class/any.assign/value.pass.cpp | 216 + .../any/any.class/any.cons/copy.pass.cpp | 107 + .../any/any.class/any.cons/default.pass.cpp | 47 + .../any.class/any.cons/in_place_type.pass.cpp | 201 + .../any/any.class/any.cons/move.pass.cpp | 111 + .../any/any.class/any.cons/value.pass.cpp | 161 + .../any.class/any.modifiers/emplace.pass.cpp | 291 + .../any.class/any.modifiers/reset.pass.cpp | 70 + .../any/any.class/any.modifiers/swap.pass.cpp | 140 + .../any.observers/has_value.pass.cpp | 64 + .../any/any.class/any.observers/type.pass.cpp | 41 + .../any/any.class/not_literal_type.pass.cpp | 21 + .../any.cast/any_cast_pointer.pass.cpp | 178 + .../any.cast/any_cast_reference.pass.cpp | 320 + ...st_request_invalid_value_category.fail.cpp | 66 + .../any.cast/const_correctness.fail.cpp | 46 + .../any.cast/not_copy_constructible.fail.cpp | 58 + .../any.cast/reference_types.fail.cpp | 54 + .../any/any.nonmembers/make_any.pass.cpp | 147 + .../any/any.nonmembers/swap.pass.cpp | 47 + .../integral.bool.fail.cpp | 30 + .../charconv.from.chars/integral.pass.cpp | 182 + .../charconv.to.chars/integral.bool.fail.cpp | 30 + .../charconv.to.chars/integral.pass.cpp | 80 + .../arithmetic.operations/divides.pass.cpp | 41 + .../arithmetic.operations/minus.pass.cpp | 41 + .../arithmetic.operations/modulus.pass.cpp | 41 + .../arithmetic.operations/multiplies.pass.cpp | 41 + .../arithmetic.operations/negate.pass.cpp | 40 + .../arithmetic.operations/plus.pass.cpp | 41 + .../transparent.pass.cpp | 59 + .../PR23141_invoke_not_constexpr.pass.cpp | 35 + .../func.bind.bind/bind_return_type.pass.cpp | 133 + .../func.bind/func.bind.bind/copy.pass.cpp | 37 + .../invoke_function_object.pass.cpp | 51 + .../func.bind.bind/invoke_int_0.pass.cpp | 55 + .../func.bind.bind/invoke_lvalue.pass.cpp | 290 + .../func.bind.bind/invoke_rvalue.pass.cpp | 268 + .../func.bind.bind/invoke_void_0.pass.cpp | 74 + .../func.bind/func.bind.bind/nested.pass.cpp | 53 + .../is_bind_expression.pass.cpp | 38 + .../is_bind_expression_03.pass.cpp | 39 + .../func.bind.isbind/is_placeholder.pass.cpp | 45 + .../func.bind.place/placeholders.pass.cpp | 97 + .../bind/func.bind/nothing_to_do.pass.cpp | 12 + .../bind/nothing_to_do.pass.cpp | 12 + .../bitwise.operations/bit_and.pass.cpp | 61 + .../bitwise.operations/bit_not.pass.cpp | 46 + .../bitwise.operations/bit_or.pass.cpp | 61 + .../bitwise.operations/bit_xor.pass.cpp | 65 + .../bitwise.operations/transparent.pass.cpp | 48 + .../comparisons/constexpr_init.pass.cpp | 48 + .../comparisons/equal_to.pass.cpp | 43 + .../comparisons/greater.pass.cpp | 53 + .../comparisons/greater_equal.pass.cpp | 53 + .../comparisons/less.pass.cpp | 52 + .../comparisons/less_equal.pass.cpp | 53 + .../comparisons/not_equal_to.pass.cpp | 45 + .../pointer_comparison_test_helper.hpp | 39 + .../comparisons/transparent.pass.cpp | 59 + .../func.def/nothing_to_do.pass.cpp | 12 + .../func.invoke/invoke.pass.cpp | 349 + .../invoke_feature_test_macro.pass.cpp | 39 + .../func.memfn/member_data.fail.cpp | 42 + .../func.memfn/member_data.pass.cpp | 43 + .../func.memfn/member_function.pass.cpp | 77 + .../func.memfn/member_function_const.pass.cpp | 78 + .../member_function_const_volatile.pass.cpp | 78 + .../member_function_volatile.pass.cpp | 78 + .../func.not_fn/not_fn.pass.cpp | 616 + .../INVOKE_tested_elsewhere.pass.cpp | 16 + .../func.require/binary_function.pass.cpp | 25 + .../func.require/unary_function.pass.cpp | 24 + .../func.search.bm/default.pass.cpp | 129 + .../func.search/func.search.bm/hash.pass.cpp | 125 + .../func.search.bm/hash.pred.pass.cpp | 143 + .../func.search/func.search.bm/pred.pass.cpp | 134 + .../func.search.bmh/default.pass.cpp | 129 + .../func.search/func.search.bmh/hash.pass.cpp | 124 + .../func.search.bmh/hash.pred.pass.cpp | 137 + .../func.search/func.search.bmh/pred.pass.cpp | 131 + .../func.search.default/default.pass.cpp | 96 + .../func.search.default/default.pred.pass.cpp | 103 + .../func.search/nothing_to_do.pass.cpp | 13 + .../bad_function_call.pass.cpp | 26 + .../bad_function_call_ctor.pass.cpp | 20 + .../func.wrap.func/derive_from.fail.cpp | 25 + .../func.wrap.func/derive_from.pass.cpp | 30 + .../func.wrap.func.alg/swap.pass.cpp | 136 + .../func.wrap.func.cap/operator_bool.pass.cpp | 29 + .../func.wrap.func.con/F.pass.cpp | 115 + .../func.wrap.func.con/F_assign.pass.cpp | 119 + .../func.wrap.func.con/F_incomplete.pass.cpp | 64 + .../func.wrap.func.con/F_nullptr.pass.cpp | 247 + .../func.wrap.func.con/alloc.fail.cpp | 25 + .../func.wrap.func.con/alloc.pass.cpp | 30 + .../func.wrap.func.con/alloc_F.fail.cpp | 29 + .../func.wrap.func.con/alloc_F.pass.cpp | 130 + .../alloc_function.fail.cpp | 30 + .../alloc_function.pass.cpp | 125 + .../func.wrap.func.con/alloc_nullptr.fail.cpp | 27 + .../func.wrap.func.con/alloc_nullptr.pass.cpp | 28 + .../alloc_rfunction.fail.cpp | 60 + .../alloc_rfunction.pass.cpp | 109 + .../func.wrap.func.con/copy_assign.pass.cpp | 138 + .../func.wrap.func.con/copy_move.pass.cpp | 153 + .../func.wrap.func.con/default.pass.cpp | 23 + .../move_reentrant.pass.cpp | 46 + .../func.wrap.func.con/nullptr_t.pass.cpp | 23 + .../nullptr_t_assign.pass.cpp | 72 + .../nullptr_t_assign_reentrant.pass.cpp | 46 + .../func.wrap.func.inv/invoke.fail.cpp | 46 + .../func.wrap.func.inv/invoke.pass.cpp | 413 + .../assign_F_alloc.pass.cpp | 64 + .../func.wrap.func.mod/swap.pass.cpp | 193 + .../operator_==.pass.cpp | 41 + .../func.wrap.func.targ/target.pass.cpp | 93 + .../func.wrap.func.targ/target_type.pass.cpp | 61 + .../func.wrap/func.wrap.func/function_types.h | 66 + .../func.wrap/func.wrap.func/types.pass.cpp | 108 + .../func.wrap/nothing_to_do.pass.cpp | 12 + .../logical.operations/logical_and.pass.cpp | 52 + .../logical.operations/logical_not.pass.cpp | 42 + .../logical.operations/logical_or.pass.cpp | 51 + .../logical.operations/transparent.pass.cpp | 44 + .../negators/binary_negate.pass.cpp | 29 + .../function.objects/negators/not1.pass.cpp | 22 + .../function.objects/negators/not2.pass.cpp | 24 + .../negators/unary_negate.pass.cpp | 26 + .../refwrap.access/conversion.pass.cpp | 45 + .../refwrap.assign/copy_assign.pass.cpp | 57 + .../refwrap/refwrap.const/copy_ctor.pass.cpp | 45 + .../refwrap/refwrap.const/type_ctor.fail.cpp | 24 + .../refwrap/refwrap.const/type_ctor.pass.cpp | 44 + .../refwrap/refwrap.helpers/cref_1.pass.cpp | 24 + .../refwrap/refwrap.helpers/cref_2.pass.cpp | 25 + .../refwrap/refwrap.helpers/ref_1.fail.cpp | 29 + .../refwrap/refwrap.helpers/ref_1.pass.cpp | 24 + .../refwrap/refwrap.helpers/ref_2.pass.cpp | 43 + .../refwrap/refwrap.invoke/invoke.fail.cpp | 52 + .../refwrap/refwrap.invoke/invoke.pass.cpp | 329 + .../refwrap.invoke/invoke_int_0.pass.cpp | 76 + .../refwrap.invoke/invoke_void_0.pass.cpp | 68 + .../function.objects/refwrap/type.pass.cpp | 37 + .../refwrap/type_properties.pass.cpp | 63 + .../refwrap/weak_result.pass.cpp | 97 + .../unord.hash/enabled_hashes.pass.cpp | 23 + .../function.objects/unord.hash/enum.fail.cpp | 24 + .../function.objects/unord.hash/enum.pass.cpp | 63 + .../unord.hash/floating.pass.cpp | 73 + .../unord.hash/integral.pass.cpp | 112 + .../unord.hash/non_enum.pass.cpp | 38 + .../unord.hash/pointer.pass.cpp | 60 + .../intseq.general/integer_seq.pass.cpp | 80 + .../intseq/intseq.intseq/integer_seq.fail.cpp | 40 + .../intseq/intseq.intseq/integer_seq.pass.cpp | 46 + .../intseq.make/make_integer_seq.fail.cpp | 37 + .../intseq.make/make_integer_seq.pass.cpp | 32 + .../make_integer_seq_fallback.fail.cpp | 21 + .../make_integer_seq_fallback.pass.cpp | 18 + .../utilities/intseq/nothing_to_do.pass.cpp | 12 + .../allocator.tag/allocator_arg.pass.cpp | 22 + .../allocate.fail.cpp | 51 + .../allocate.pass.cpp | 49 + .../allocate_hint.pass.cpp | 81 + .../construct.pass.cpp | 153 + .../deallocate.pass.cpp | 55 + .../allocator.traits.members/destroy.pass.cpp | 90 + .../incomplete_type_helper.h | 14 + .../max_size.pass.cpp | 77 + ...ct_on_container_copy_construction.pass.cpp | 77 + .../const_pointer.pass.cpp | 67 + .../const_void_pointer.pass.cpp | 69 + .../difference_type.pass.cpp | 78 + .../is_always_equal.pass.cpp | 52 + .../allocator.traits.types/pointer.pass.cpp | 54 + ...gate_on_container_copy_assignment.pass.cpp | 54 + ...gate_on_container_move_assignment.pass.cpp | 55 + .../propagate_on_container_swap.pass.cpp | 53 + .../rebind_alloc.pass.cpp | 101 + .../allocator.traits.types/size_type.pass.cpp | 76 + .../void_pointer.pass.cpp | 68 + .../allocator.traits/allocator_type.pass.cpp | 31 + .../allocator.traits/rebind_traits.pass.cpp | 81 + .../allocator.traits/value_type.pass.cpp | 31 + .../tested_elsewhere.pass.cpp | 12 + .../uses_allocator.pass.cpp | 75 + .../allocator.uses/nothing_to_do.pass.cpp | 12 + .../memory/c.malloc/nothing_to_do.pass.cpp | 14 + .../default.allocator/allocator.ctor.pass.cpp | 50 + .../allocator.globals/eq.pass.cpp | 31 + .../allocator.members/address.pass.cpp | 39 + .../allocator.members/allocate.fail.cpp | 28 + .../allocator.members/allocate.pass.cpp | 111 + .../allocator.members/allocate.size.pass.cpp | 47 + .../allocator.members/construct.pass.cpp | 143 + .../allocator.members/max_size.pass.cpp | 27 + .../allocator_pointers.pass.cpp | 124 + .../allocator_types.pass.cpp | 57 + .../default.allocator/allocator_void.pass.cpp | 36 + .../pointer.conversion/to_address.pass.cpp | 120 + .../pointer.traits/difference_type.pass.cpp | 25 + .../pointer.traits/element_type.pass.cpp | 25 + .../memory/pointer.traits/pointer.pass.cpp | 32 + .../pointer_to.pass.cpp | 48 + .../difference_type.pass.cpp | 66 + .../element_type.pass.cpp | 68 + .../pointer.traits.types/rebind.pass.cpp | 105 + .../memory/pointer.traits/pointer_to.pass.cpp | 32 + .../memory/pointer.traits/rebind.pass.cpp | 31 + .../utilities/memory/ptr.align/align.pass.cpp | 84 + .../nothing_to_do.pass.cpp | 12 + .../specialized.addressof/addressof.pass.cpp | 51 + .../addressof.temp.fail.cpp | 26 + .../constexpr_addressof.pass.cpp | 42 + .../specialized.destroy/destroy.pass.cpp | 47 + .../specialized.destroy/destroy_at.pass.cpp | 78 + .../specialized.destroy/destroy_n.pass.cpp | 49 + .../uninitialized_default_construct.pass.cpp | 112 + ...uninitialized_default_construct_n.pass.cpp | 116 + .../uninitialized_value_construct.pass.cpp | 111 + .../uninitialized_value_construct_n.pass.cpp | 115 + .../uninitialized_copy.pass.cpp | 89 + .../uninitialized_copy_n.pass.cpp | 88 + .../uninitialized_fill_n.pass.cpp | 88 + .../uninitialized_fill.pass.cpp | 85 + .../uninitialized_move.pass.cpp | 114 + .../uninitialized_move_n.pass.cpp | 117 + .../raw_storage_iterator.base.pass.cpp | 58 + .../raw_storage_iterator.pass.cpp | 71 + .../temporary.buffer/overaligned.pass.cpp | 35 + .../temporary_buffer.pass.cpp | 29 + .../unique.ptr/unique.ptr.special/io.fail.cpp | 35 + .../unique.ptr/unique.ptr.special/io.pass.cpp | 32 + .../declare_no_pointers.pass.cpp | 23 + .../declare_reachable.pass.cpp | 24 + .../get_pointer_safety.pass.cpp | 37 + .../util.smartptr/nothing_to_do.pass.cpp | 12 + .../enable_shared_from_this.pass.cpp | 171 + .../util.smartptr.hash/enabled_hash.pass.cpp | 23 + .../hash_shared_ptr.pass.cpp | 44 + .../hash_unique_ptr.pass.cpp | 103 + .../atomic_compare_exchange_strong.pass.cpp | 55 + ..._compare_exchange_strong_explicit.pass.cpp | 60 + .../atomic_compare_exchange_weak.pass.cpp | 55 + ...ic_compare_exchange_weak_explicit.pass.cpp | 60 + .../atomic_exchange.pass.cpp | 41 + .../atomic_exchange_explicit.pass.cpp | 41 + .../atomic_is_lock_free.pass.cpp | 33 + .../atomic_load.pass.cpp | 39 + .../atomic_load_explicit.pass.cpp | 39 + .../atomic_store.pass.cpp | 40 + .../atomic_store_explicit.pass.cpp | 40 + .../util.smartptr.shared/types.pass.cpp | 32 + .../get_deleter.pass.cpp | 67 + .../auto_ptr_Y.pass.cpp | 114 + .../shared_ptr.pass.cpp | 121 + .../shared_ptr_Y.pass.cpp | 121 + .../shared_ptr_Y_rv.pass.cpp | 123 + .../shared_ptr_rv.pass.cpp | 123 + .../unique_ptr_Y.pass.cpp | 113 + .../const_pointer_cast.pass.cpp | 57 + .../dynamic_pointer_cast.pass.cpp | 57 + .../static_pointer_cast.pass.cpp | 69 + .../cmp_nullptr.pass.cpp | 69 + .../util.smartptr.shared.cmp/eq.pass.cpp | 31 + .../util.smartptr.shared.cmp/lt.pass.cpp | 30 + .../auto_ptr.pass.cpp | 98 + .../default.pass.cpp | 22 + .../nullptr_t.pass.cpp | 22 + .../nullptr_t_deleter.pass.cpp | 47 + .../nullptr_t_deleter_allocator.pass.cpp | 85 + ...nullptr_t_deleter_allocator_throw.pass.cpp | 47 + .../nullptr_t_deleter_throw.pass.cpp | 55 + .../pointer.pass.cpp | 46 + .../pointer_deleter.pass.cpp | 48 + .../pointer_deleter_allocator.pass.cpp | 89 + .../pointer_deleter_allocator_throw.pass.cpp | 48 + .../pointer_deleter_throw.pass.cpp | 54 + .../pointer_throw.pass.cpp | 52 + .../shared_ptr.pass.cpp | 62 + .../shared_ptr_Y.pass.cpp | 97 + .../shared_ptr_Y_rv.pass.cpp | 113 + .../shared_ptr_pointer.pass.cpp | 61 + .../shared_ptr_rv.pass.cpp | 77 + .../unique_ptr.pass.cpp | 101 + .../weak_ptr.pass.cpp | 85 + .../allocate_shared.pass.cpp | 86 + .../allocate_shared_cxx03.pass.cpp | 118 + .../make_shared.pass.cpp | 111 + .../make_shared.private.fail.cpp | 29 + .../make_shared.protected.fail.cpp | 29 + .../make_shared.volatile.pass.cpp | 61 + .../tested_elsewhere.pass.cpp | 12 + .../util.smartptr.shared.io/io.pass.cpp | 29 + .../util.smartptr.shared.mod/reset.pass.cpp | 62 + .../reset_pointer.pass.cpp | 64 + .../reset_pointer_deleter.pass.cpp | 79 + .../reset_pointer_deleter_allocator.pass.cpp | 88 + .../util.smartptr.shared.mod/swap.pass.cpp | 104 + .../util.smartptr.shared.obs/arrow.pass.cpp | 29 + .../dereference.pass.cpp | 25 + .../util.smartptr.shared.obs/op_bool.pass.cpp | 29 + .../owner_before_shared_ptr.pass.cpp | 30 + .../owner_before_weak_ptr.pass.cpp | 33 + .../util.smartptr.shared.obs/unique.pass.cpp | 28 + .../util.smartptr.shared.spec/swap.pass.cpp | 104 + .../util.smartptr.weak/types.pass.cpp | 26 + .../owner_less.pass.cpp | 132 + .../shared_ptr_Y.pass.cpp | 61 + .../weak_ptr.pass.cpp | 78 + .../weak_ptr_Y.pass.cpp | 78 + .../util.smartptr.weak.const/default.pass.cpp | 25 + .../shared_ptr_Y.pass.cpp | 95 + .../weak_ptr.pass.cpp | 116 + .../weak_ptr_Y.pass.cpp | 108 + .../tested_elsewhere.pass.cpp | 12 + .../util.smartptr.weak.mod/reset.pass.cpp | 41 + .../util.smartptr.weak.mod/swap.pass.cpp | 49 + .../util.smartptr.weak.obs/expired.pass.cpp | 46 + .../util.smartptr.weak.obs/lock.pass.cpp | 58 + .../not_less_than.fail.cpp | 27 + .../owner_before_shared_ptr.pass.cpp | 33 + .../owner_before_weak_ptr.pass.cpp | 33 + .../util.smartptr.weak.spec/swap.pass.cpp | 49 + .../bad_weak_ptr.pass.cpp | 31 + .../meta/meta.help/bool_constant.pass.cpp | 34 + .../meta/meta.help/integral_constant.pass.cpp | 51 + .../meta/meta.logical/conjunction.pass.cpp | 66 + .../meta/meta.logical/disjunction.pass.cpp | 66 + .../meta/meta.logical/negation.pass.cpp | 39 + .../meta/meta.rel/is_base_of.pass.cpp | 57 + .../meta/meta.rel/is_convertible.pass.cpp | 263 + .../meta.rel/is_convertible_fallback.pass.cpp | 26 + .../meta/meta.rel/is_invocable.pass.cpp | 166 + .../meta.rel/is_nothrow_invocable.pass.cpp | 121 + .../utilities/meta/meta.rel/is_same.pass.cpp | 73 + .../meta/meta.rqmts/nothing_to_do.pass.cpp | 12 + .../remove_all_extents.pass.cpp | 43 + .../meta.trans.arr/remove_extent.pass.cpp | 44 + .../meta.trans.cv/add_const.pass.cpp | 45 + .../meta.trans/meta.trans.cv/add_cv.pass.cpp | 45 + .../meta.trans.cv/add_volatile.pass.cpp | 45 + .../meta.trans.cv/remove_const.pass.cpp | 45 + .../meta.trans.cv/remove_cv.pass.cpp | 45 + .../meta.trans.cv/remove_volatile.pass.cpp | 45 + .../meta.trans.other/aligned_storage.pass.cpp | 292 + .../meta.trans.other/aligned_union.fail.cpp | 23 + .../meta.trans.other/aligned_union.pass.cpp | 115 + .../meta.trans.other/common_type.pass.cpp | 311 + .../meta.trans.other/conditional.pass.cpp | 26 + .../meta.trans.other/decay.pass.cpp | 42 + .../meta.trans.other/enable_if.fail.cpp | 19 + .../meta.trans.other/enable_if.pass.cpp | 26 + .../meta.trans.other/enable_if2.fail.cpp | 20 + .../meta.trans.other/remove_cvref.pass.cpp | 52 + .../meta.trans.other/result_of.pass.cpp | 370 + .../meta.trans.other/result_of11.pass.cpp | 172 + .../meta.trans.other/underlying_type.pass.cpp | 56 + .../meta.trans.ptr/add_pointer.pass.cpp | 80 + .../meta.trans.ptr/remove_pointer.pass.cpp | 44 + .../meta.trans.ref/add_lvalue_ref.pass.cpp | 79 + .../meta.trans.ref/add_rvalue_ref.pass.cpp | 77 + .../meta.trans.ref/remove_ref.pass.cpp | 47 + .../meta.trans.sign/make_signed.pass.cpp | 70 + .../meta.trans.sign/make_unsigned.pass.cpp | 71 + .../meta/meta.trans/nothing_to_do.pass.cpp | 12 + .../meta/meta.type.synop/endian.pass.cpp | 48 + .../meta.type.synop/nothing_to_do.pass.cpp | 12 + .../alignment_of.pass.cpp | 55 + .../meta.unary.prop.query/extent.pass.cpp | 74 + .../meta/meta.unary.prop.query/rank.pass.cpp | 54 + .../meta.unary.prop.query/void_t.pass.cpp | 68 + .../void_t_feature_test_macro.pass.cpp | 36 + .../meta.unary/meta.unary.cat/array.pass.cpp | 61 + .../meta.unary/meta.unary.cat/class.pass.cpp | 60 + .../meta.unary/meta.unary.cat/enum.pass.cpp | 56 + .../meta.unary.cat/floating_point.pass.cpp | 57 + .../meta.unary.cat/function.pass.cpp | 93 + .../meta.unary.cat/integral.pass.cpp | 71 + .../meta.unary.cat/is_array.pass.cpp | 94 + .../meta.unary.cat/is_class.pass.cpp | 100 + .../meta.unary.cat/is_enum.pass.cpp | 95 + .../meta.unary.cat/is_floating_point.pass.cpp | 103 + .../meta.unary.cat/is_function.pass.cpp | 109 + .../meta.unary.cat/is_integral.pass.cpp | 106 + .../is_lvalue_reference.pass.cpp | 97 + .../is_member_object_pointer.pass.cpp | 99 + .../meta.unary.cat/is_member_pointer.pass.cpp | 106 + .../meta.unary.cat/is_null_pointer.pass.cpp | 97 + .../meta.unary.cat/is_pointer.pass.cpp | 96 + .../is_rvalue_reference.pass.cpp | 97 + .../meta.unary.cat/is_union.pass.cpp | 95 + .../meta.unary.cat/is_void.pass.cpp | 94 + .../meta.unary.cat/lvalue_ref.pass.cpp | 48 + .../member_function_pointer.pass.cpp | 229 + ...ber_function_pointer_no_variadics.pass.cpp | 83 + .../member_object_pointer.pass.cpp | 59 + .../meta.unary.cat/nullptr.pass.cpp | 59 + .../meta.unary.cat/pointer.pass.cpp | 59 + .../meta.unary.cat/rvalue_ref.pass.cpp | 49 + .../meta.unary/meta.unary.cat/union.pass.cpp | 61 + .../meta.unary/meta.unary.cat/void.pass.cpp | 55 + .../meta.unary/meta.unary.comp/array.pass.cpp | 49 + .../meta.unary/meta.unary.comp/class.pass.cpp | 47 + .../meta.unary/meta.unary.comp/enum.pass.cpp | 42 + .../meta.unary.comp/floating_point.pass.cpp | 42 + .../meta.unary.comp/function.pass.cpp | 43 + .../meta.unary.comp/integral.pass.cpp | 56 + .../meta.unary.comp/is_arithmetic.pass.cpp | 107 + .../meta.unary.comp/is_compound.pass.cpp | 98 + .../meta.unary.comp/is_fundamental.pass.cpp | 115 + .../is_member_pointer.pass.cpp | 105 + .../meta.unary.comp/is_object.pass.cpp | 103 + .../meta.unary.comp/is_reference.pass.cpp | 104 + .../meta.unary.comp/is_scalar.pass.cpp | 114 + .../meta.unary.comp/lvalue_ref.pass.cpp | 32 + .../member_function_pointer.pass.cpp | 46 + .../member_object_pointer.pass.cpp | 44 + .../meta.unary.comp/pointer.pass.cpp | 43 + .../meta.unary.comp/rvalue_ref.pass.cpp | 34 + .../meta.unary/meta.unary.comp/union.pass.cpp | 46 + .../meta.unary/meta.unary.comp/void.pass.cpp | 40 + ...has_unique_object_representations.pass.cpp | 106 + .../has_virtual_destructor.pass.cpp | 91 + .../meta.unary.prop/is_abstract.pass.cpp | 94 + .../meta.unary.prop/is_aggregate.pass.cpp | 79 + .../meta.unary.prop/is_assignable.pass.cpp | 83 + .../meta.unary.prop/is_const.pass.cpp | 48 + .../meta.unary.prop/is_constructible.pass.cpp | 305 + .../is_copy_assignable.pass.cpp | 85 + .../is_copy_constructible.pass.cpp | 95 + .../is_default_constructible.pass.cpp | 126 + .../meta.unary.prop/is_destructible.pass.cpp | 146 + .../meta.unary.prop/is_empty.pass.cpp | 104 + .../meta.unary.prop/is_final.pass.cpp | 62 + .../meta.unary.prop/is_literal_type.pass.cpp | 105 + .../is_move_assignable.pass.cpp | 72 + .../is_move_constructible.pass.cpp | 88 + .../is_nothrow_assignable.pass.cpp | 62 + .../is_nothrow_constructible.pass.cpp | 118 + .../is_nothrow_copy_assignable.pass.cpp | 72 + .../is_nothrow_copy_constructible.pass.cpp | 72 + .../is_nothrow_default_constructible.pass.cpp | 77 + .../is_nothrow_destructible.pass.cpp | 114 + .../is_nothrow_move_assignable.pass.cpp | 70 + .../is_nothrow_move_constructible.pass.cpp | 72 + .../is_nothrow_swappable.pass.cpp | 83 + .../is_nothrow_swappable_with.pass.cpp | 81 + .../meta.unary.prop/is_pod.pass.cpp | 65 + .../meta.unary.prop/is_polymorphic.pass.cpp | 95 + .../meta.unary.prop/is_signed.pass.cpp | 75 + .../is_standard_layout.pass.cpp | 61 + .../meta.unary.prop/is_swappable.pass.cpp | 98 + .../is_swappable_include_order.pass.cpp | 43 + .../is_swappable_with.pass.cpp | 78 + .../meta.unary.prop/is_trivial.pass.cpp | 63 + .../is_trivially_assignable.pass.cpp | 62 + .../is_trivially_constructible.pass.cpp | 77 + .../is_trivially_copy_assignable.pass.cpp | 80 + .../is_trivially_copy_constructible.pass.cpp | 84 + .../is_trivially_copyable.pass.cpp | 80 + ...s_trivially_default_constructible.pass.cpp | 89 + .../is_trivially_destructible.pass.cpp | 119 + .../is_trivially_move_assignable.pass.cpp | 80 + .../is_trivially_move_constructible.pass.cpp | 98 + .../meta.unary.prop/is_unsigned.pass.cpp | 75 + .../meta.unary.prop/is_volatile.pass.cpp | 48 + .../meta/meta.unary/nothing_to_do.pass.cpp | 12 + test/std/utilities/nothing_to_do.pass.cpp | 12 + .../default.pass.cpp | 30 + .../derive.pass.cpp | 25 + .../optional.comp_with_t/equal.pass.cpp | 64 + .../optional.comp_with_t/greater.pass.cpp | 64 + .../greater_equal.pass.cpp | 66 + .../optional.comp_with_t/less_equal.pass.cpp | 66 + .../optional.comp_with_t/less_than.pass.cpp | 64 + .../optional.comp_with_t/not_equal.pass.cpp | 64 + .../optional.hash/enabled_hash.pass.cpp | 26 + .../optional/optional.hash/hash.pass.cpp | 80 + .../optional/optional.nullops/equal.pass.cpp | 39 + .../optional.nullops/greater.pass.cpp | 39 + .../optional.nullops/greater_equal.pass.cpp | 39 + .../optional.nullops/less_equal.pass.cpp | 40 + .../optional.nullops/less_than.pass.cpp | 39 + .../optional.nullops/not_equal.pass.cpp | 39 + .../optional.nullopt/nullopt_t.fail.cpp | 25 + .../optional.nullopt/nullopt_t.pass.cpp | 40 + .../assign_value.pass.cpp | 272 + .../const_optional_U.pass.cpp | 254 + .../optional.object.assign/copy.pass.cpp | 102 + .../optional.object.assign/emplace.pass.cpp | 269 + .../emplace_initializer_list.pass.cpp | 121 + .../optional.object.assign/move.pass.cpp | 174 + .../optional.object.assign/nullopt_t.pass.cpp | 67 + .../optional_U.pass.cpp | 268 + .../optional.object.ctor/U.pass.cpp | 159 + .../optional.object.ctor/const_T.pass.cpp | 135 + .../const_optional_U.pass.cpp | 134 + .../optional.object.ctor/copy.fail.cpp | 36 + .../optional.object.ctor/copy.pass.cpp | 173 + .../optional.object.ctor/deduct.fail.cpp | 46 + .../optional.object.ctor/deduct.pass.cpp | 54 + .../optional.object.ctor/default.pass.cpp | 81 + .../explicit_const_optional_U.pass.cpp | 121 + .../explicit_optional_U.pass.cpp | 84 + .../optional.object.ctor/in_place_t.pass.cpp | 148 + .../initializer_list.pass.cpp | 116 + .../optional.object.ctor/move.fail.cpp | 37 + .../optional.object.ctor/move.pass.cpp | 228 + .../optional.object.ctor/nullopt_t.pass.cpp | 73 + .../optional.object.ctor/optional_U.pass.cpp | 93 + .../optional.object.ctor/rvalue_T.pass.cpp | 160 + .../optional.object.dtor/dtor.pass.cpp | 68 + .../optional.object.mod/reset.pass.cpp | 59 + .../optional.object.observe/bool.pass.cpp | 37 + .../dereference.pass.cpp | 73 + .../dereference_const.pass.cpp | 69 + .../dereference_const_rvalue.pass.cpp | 69 + .../dereference_rvalue.pass.cpp | 73 + .../has_value.pass.cpp | 37 + .../optional.object.observe/op_arrow.pass.cpp | 72 + .../op_arrow_const.pass.cpp | 76 + .../optional.object.observe/value.pass.cpp | 81 + .../value_const.fail.cpp | 33 + .../value_const.pass.cpp | 72 + .../value_const_rvalue.pass.cpp | 72 + .../optional.object.observe/value_or.pass.cpp | 74 + .../value_or_const.pass.cpp | 77 + .../value_rvalue.pass.cpp | 79 + .../optional.object.swap/swap.pass.cpp | 306 + ...onal_requires_destructible_object.fail.cpp | 50 + .../special_member_gen.pass.cpp | 102 + .../optional/optional.object/types.pass.cpp | 38 + .../optional/optional.relops/equal.pass.cpp | 86 + .../optional.relops/greater_equal.pass.cpp | 83 + .../optional.relops/greater_than.pass.cpp | 81 + .../optional.relops/less_equal.pass.cpp | 83 + .../optional.relops/less_than.pass.cpp | 81 + .../optional.relops/not_equal.pass.cpp | 86 + .../optional.specalg/make_optional.pass.cpp | 51 + .../make_optional_explicit.pass.cpp | 45 + ...ptional_explicit_initializer_list.pass.cpp | 53 + .../optional/optional.specalg/swap.pass.cpp | 352 + .../optional.syn/optional_in_place_t.fail.cpp | 26 + ...ptional_includes_initializer_list.pass.cpp | 23 + .../optional.syn/optional_nullopt_t.fail.cpp | 29 + .../ratio/ratio.arithmetic/ratio_add.fail.cpp | 19 + .../ratio/ratio.arithmetic/ratio_add.pass.cpp | 76 + .../ratio.arithmetic/ratio_divide.fail.cpp | 19 + .../ratio.arithmetic/ratio_divide.pass.cpp | 58 + .../ratio.arithmetic/ratio_multiply.fail.cpp | 19 + .../ratio.arithmetic/ratio_multiply.pass.cpp | 58 + .../ratio.arithmetic/ratio_subtract.fail.cpp | 19 + .../ratio.arithmetic/ratio_subtract.pass.cpp | 76 + .../ratio.comparison/ratio_equal.pass.cpp | 67 + .../ratio.comparison/ratio_greater.pass.cpp | 67 + .../ratio_greater_equal.pass.cpp | 67 + .../ratio.comparison/ratio_less.pass.cpp | 97 + .../ratio_less_equal.pass.cpp | 67 + .../ratio.comparison/ratio_not_equal.pass.cpp | 67 + .../ratio/ratio.ratio/ratio.pass.cpp | 44 + .../ratio/ratio.ratio/ratio1.fail.cpp | 18 + .../ratio/ratio.ratio/ratio2.fail.cpp | 19 + .../ratio/ratio.ratio/ratio3.fail.cpp | 19 + .../ratio/ratio.si/nothing_to_do.pass.cpp | 12 + test/std/utilities/ratio/typedefs.pass.cpp | 32 + .../utilities/smartptr/unique.ptr/README.TXT | 16 + .../unique.ptr/nothing_to_do.pass.cpp | 12 + .../unique.ptr.class/pointer_type.pass.cpp | 61 + .../unique.ptr.asgn/move.pass.cpp | 120 + .../unique.ptr.asgn/move_convert.pass.cpp | 420 + .../move_convert.runtime.pass.cpp | 121 + .../move_convert.single.pass.cpp | 145 + .../unique.ptr.asgn/null.pass.cpp | 39 + .../unique.ptr.asgn/nullptr.pass.cpp | 40 + .../unique.ptr.ctor/auto_pointer.pass.cpp | 97 + .../unique.ptr.ctor/default.pass.cpp | 107 + .../unique.ptr.ctor/move.pass.cpp | 174 + .../unique.ptr.ctor/move_convert.pass.cpp | 219 + .../move_convert.runtime.pass.cpp | 83 + .../move_convert.single.pass.cpp | 248 + .../unique.ptr.ctor/null.pass.cpp | 74 + .../unique.ptr.ctor/nullptr.pass.cpp | 106 + .../unique.ptr.ctor/pointer.pass.cpp | 171 + .../unique.ptr.ctor/pointer_deleter.fail.cpp | 29 + .../unique.ptr.ctor/pointer_deleter.pass.cpp | 328 + .../unique.ptr.dtor/null.pass.cpp | 48 + .../unique.ptr.modifiers/release.pass.cpp | 56 + .../unique.ptr.modifiers/reset.pass.cpp | 117 + .../reset.runtime.fail.cpp | 30 + .../reset.single.pass.cpp | 46 + .../unique.ptr.modifiers/reset_self.pass.cpp | 25 + .../unique.ptr.modifiers/swap.pass.cpp | 88 + .../dereference.runtime.fail.cpp | 24 + .../dereference.single.pass.cpp | 22 + .../explicit_bool.pass.cpp | 66 + .../unique.ptr.observers/get.pass.cpp | 51 + .../unique.ptr.observers/get_deleter.pass.cpp | 65 + .../op_arrow.runtime.fail.cpp | 32 + .../op_arrow.single.pass.cpp | 28 + .../op_subscript.runtime.pass.cpp | 48 + .../op_subscript.single.fail.cpp | 24 + .../make_unique.array.pass.cpp | 44 + .../make_unique.array1.fail.cpp | 17 + .../make_unique.array2.fail.cpp | 17 + .../make_unique.array3.fail.cpp | 17 + .../make_unique.array4.fail.cpp | 17 + .../make_unique.single.pass.cpp | 32 + .../unique.ptr.dltr/nothing_to_do.pass.cpp | 12 + .../convert_ctor.pass.cpp | 48 + .../unique.ptr.dltr.dflt/default.pass.cpp | 34 + .../unique.ptr.dltr.dflt/incomplete.fail.cpp | 26 + .../unique.ptr.dltr.dflt/void.fail.cpp | 24 + .../convert_ctor.fail.cpp | 32 + .../convert_ctor.pass.cpp | 28 + .../unique.ptr.dltr.dflt1/default.pass.cpp | 36 + .../unique.ptr.dltr.dflt1/incomplete.fail.cpp | 26 + .../nothing_to_do.pass.cpp | 12 + .../unique.ptr.special/cmp_nullptr.pass.cpp | 69 + .../unique.ptr/unique.ptr.special/eq.pass.cpp | 86 + .../unique.ptr.special/rel.pass.cpp | 100 + .../unique.ptr.special/swap.pass.cpp | 102 + .../bitset.cons/char_ptr_ctor.pass.cpp | 61 + .../bitset.cons/default.pass.cpp | 50 + .../bitset.cons/string_ctor.pass.cpp | 89 + .../bitset.cons/ull_ctor.pass.cpp | 54 + .../bitset.hash/bitset.pass.cpp | 48 + .../bitset.hash/enabled_hash.pass.cpp | 29 + .../bitset.members/all.pass.cpp | 43 + .../bitset.members/any.pass.cpp | 46 + .../bitset.members/count.pass.cpp | 57 + .../bitset.members/flip_all.pass.cpp | 55 + .../bitset.members/flip_one.pass.cpp | 72 + .../bitset.members/index.pass.cpp | 75 + .../bitset.members/index_const.pass.cpp | 57 + .../bitset.members/left_shift.pass.cpp | 56 + .../bitset.members/left_shift_eq.pass.cpp | 61 + .../bitset.members/none.pass.cpp | 46 + .../bitset.members/not_all.pass.cpp | 54 + .../bitset.members/op_and_eq.pass.cpp | 56 + .../bitset.members/op_eq_eq.pass.cpp | 63 + .../bitset.members/op_or_eq.pass.cpp | 56 + .../bitset.members/op_xor_eq.pass.cpp | 56 + .../bitset.members/reset_all.pass.cpp | 44 + .../bitset.members/reset_one.pass.cpp | 57 + .../bitset.members/right_shift.pass.cpp | 56 + .../bitset.members/right_shift_eq.pass.cpp | 61 + .../bitset.members/set_all.pass.cpp | 43 + .../bitset.members/set_one.pass.cpp | 66 + .../bitset.members/size.pass.cpp | 33 + .../bitset.members/test.pass.cpp | 67 + .../bitset.members/to_string.pass.cpp | 168 + .../bitset.members/to_ullong.pass.cpp | 59 + .../bitset.members/to_ulong.pass.cpp | 61 + .../bitset.operators/op_and.pass.cpp | 54 + .../bitset.operators/op_not.pass.cpp | 54 + .../bitset.operators/op_or.pass.cpp | 54 + .../bitset.operators/stream_in.pass.cpp | 26 + .../bitset.operators/stream_out.pass.cpp | 26 + .../template.bitset/includes.pass.cpp | 37 + test/std/utilities/time/clock.h | 26 + .../utilities/time/date.time/ctime.pass.cpp | 60 + test/std/utilities/time/hours.pass.cpp | 27 + test/std/utilities/time/microseconds.pass.cpp | 27 + test/std/utilities/time/milliseconds.pass.cpp | 27 + test/std/utilities/time/minutes.pass.cpp | 27 + test/std/utilities/time/nanoseconds.pass.cpp | 27 + test/std/utilities/time/rep.h | 29 + test/std/utilities/time/seconds.pass.cpp | 27 + .../time.clock.req/nothing_to_do.pass.cpp | 12 + .../time/time.clock/nothing_to_do.pass.cpp | 12 + .../time.clock.hires/consistency.pass.cpp | 38 + .../time.clock/time.clock.hires/now.pass.cpp | 26 + .../time.clock.steady/consistency.pass.cpp | 40 + .../time.clock/time.clock.steady/now.pass.cpp | 27 + .../time.clock.system/consistency.pass.cpp | 39 + .../time.clock.system/from_time_t.pass.cpp | 24 + .../time.clock/time.clock.system/now.pass.cpp | 26 + .../time.clock.system/rep_signed.pass.cpp | 23 + .../time.clock.system/to_time_t.pass.cpp | 24 + .../time/time.duration/default_ratio.pass.cpp | 26 + .../time/time.duration/duration.fail.cpp | 23 + .../time/time.duration/positive_num.fail.cpp | 22 + .../time/time.duration/ratio.fail.cpp | 30 + .../time.duration.alg/abs.fail.cpp | 27 + .../time.duration.alg/abs.pass.cpp | 50 + .../time.duration.arithmetic/op_++.pass.cpp | 41 + .../op_++int.pass.cpp | 42 + .../time.duration.arithmetic/op_+.pass.cpp | 46 + .../time.duration.arithmetic/op_+=.pass.cpp | 45 + .../time.duration.arithmetic/op_--.pass.cpp | 41 + .../op_--int.pass.cpp | 43 + .../time.duration.arithmetic/op_-.pass.cpp | 47 + .../time.duration.arithmetic/op_-=.pass.cpp | 45 + .../op_divide=.pass.cpp | 41 + .../op_mod=duration.pass.cpp | 45 + .../op_mod=rep.pass.cpp | 41 + .../op_times=.pass.cpp | 41 + .../time.duration.cast/ceil.fail.cpp | 26 + .../time.duration.cast/ceil.pass.cpp | 51 + .../time.duration.cast/duration_cast.pass.cpp | 54 + .../time.duration.cast/floor.fail.cpp | 26 + .../time.duration.cast/floor.pass.cpp | 50 + .../time.duration.cast/round.fail.cpp | 26 + .../time.duration.cast/round.pass.cpp | 50 + .../time.duration.cast/toduration.fail.cpp | 25 + .../op_equal.pass.cpp | 117 + .../op_less.pass.cpp | 155 + .../time.duration.cons/convert_exact.pass.cpp | 38 + .../convert_float_to_int.fail.cpp | 25 + .../convert_inexact.fail.cpp | 25 + .../convert_inexact.pass.cpp | 38 + .../convert_int_to_float.pass.cpp | 38 + .../convert_overflow.pass.cpp | 37 + .../time.duration.cons/default.pass.cpp | 39 + .../time.duration.cons/rep.pass.cpp | 41 + .../time.duration.cons/rep01.fail.cpp | 26 + .../time.duration.cons/rep02.fail.cpp | 26 + .../time.duration.cons/rep02.pass.cpp | 32 + .../time.duration.cons/rep03.fail.cpp | 24 + .../time.duration.literals/literals.pass.cpp | 58 + .../time.duration.literals/literals1.fail.cpp | 19 + .../time.duration.literals/literals1.pass.cpp | 48 + .../time.duration.literals/literals2.fail.cpp | 20 + .../time.duration.literals/literals2.pass.cpp | 50 + .../time.duration.nonmember/op_+.pass.cpp | 75 + .../time.duration.nonmember/op_-.pass.cpp | 76 + .../op_divide_duration.pass.cpp | 68 + .../op_divide_rep.fail.cpp | 26 + .../op_divide_rep.pass.cpp | 38 + .../op_mod_duration.pass.cpp | 64 + .../op_mod_rep.fail.cpp | 26 + .../op_mod_rep.pass.cpp | 38 + .../op_times_rep.pass.cpp | 47 + .../op_times_rep1.fail.cpp | 30 + .../op_times_rep2.fail.cpp | 30 + .../tested_elsewhere.pass.cpp | 12 + .../time.duration.special/max.pass.cpp | 44 + .../time.duration.special/min.pass.cpp | 44 + .../time.duration.special/zero.pass.cpp | 43 + .../time/time.duration/types.pass.cpp | 27 + .../time/time.point/default_duration.pass.cpp | 26 + .../time/time.point/duration.fail.cpp | 22 + .../time.point.arithmetic/op_+=.pass.cpp | 26 + .../time.point.arithmetic/op_-=.pass.cpp | 26 + .../time.point/time.point.cast/ceil.fail.cpp | 26 + .../time.point/time.point.cast/ceil.pass.cpp | 69 + .../time.point/time.point.cast/floor.fail.cpp | 26 + .../time.point/time.point.cast/floor.pass.cpp | 68 + .../time.point/time.point.cast/round.fail.cpp | 26 + .../time.point/time.point.cast/round.pass.cpp | 68 + .../time.point.cast/time_point_cast.pass.cpp | 82 + .../time.point.cast/toduration.fail.cpp | 28 + .../time.point.comparisons/op_equal.fail.cpp | 40 + .../time.point.comparisons/op_equal.pass.cpp | 86 + .../time.point.comparisons/op_less.fail.cpp | 48 + .../time.point.comparisons/op_less.pass.cpp | 110 + .../time.point.cons/convert.fail.cpp | 30 + .../time.point.cons/convert.pass.cpp | 39 + .../time.point.cons/default.pass.cpp | 36 + .../time.point.cons/duration.fail.cpp | 25 + .../time.point.cons/duration.pass.cpp | 43 + .../time.point.nonmember/op_+.pass.cpp | 48 + .../op_-duration.pass.cpp | 53 + .../op_-time_point.pass.cpp | 40 + .../tested_elsewhere.pass.cpp | 12 + .../time.point.special/max.pass.cpp | 25 + .../time.point.special/min.pass.cpp | 25 + .../time/time.traits/nothing_to_do.pass.cpp | 12 + .../time.traits.duration_values/max.pass.cpp | 37 + .../time.traits.duration_values/min.pass.cpp | 37 + .../time.traits.duration_values/zero.pass.cpp | 28 + .../treat_as_floating_point.pass.cpp | 43 + .../duration.pass.cpp | 42 + .../time_point.pass.cpp | 46 + .../tuple/tuple.general/ignore.pass.cpp | 54 + .../tuple.general/tuple.smartptr.pass.cpp | 33 + .../tuple/tuple.tuple/TupleFunction.pass.cpp | 37 + .../utilities/tuple/tuple.tuple/alloc_first.h | 58 + .../utilities/tuple/tuple.tuple/alloc_last.h | 58 + .../tuple.tuple/tuple.apply/apply.pass.cpp | 274 + .../tuple.apply/apply_extended_types.pass.cpp | 426 + .../tuple.apply/apply_large_arity.pass.cpp | 144 + .../tuple.apply/make_from_tuple.pass.cpp | 214 + .../tuple.assign/const_pair.pass.cpp | 34 + .../tuple.assign/convert_copy.pass.cpp | 89 + .../tuple.assign/convert_move.pass.cpp | 110 + .../tuple.tuple/tuple.assign/copy.fail.cpp | 31 + .../tuple.tuple/tuple.assign/copy.pass.cpp | 104 + .../tuple.tuple/tuple.assign/move.pass.cpp | 125 + .../tuple.assign/move_pair.pass.cpp | 50 + .../tuple_array_template_depth.pass.cpp | 34 + ...855_tuple_ref_binding_diagnostics.pass.cpp | 137 + ...PR22806_constrain_tuple_like_ctor.pass.cpp | 178 + .../PR23256_constrain_UTypes_ctor.pass.cpp | 98 + ...4_contains_ref_to_incomplete_type.pass.cpp | 51 + .../tuple.tuple/tuple.cnstr/PR31384.pass.cpp | 88 + .../tuple.tuple/tuple.cnstr/UTypes.fail.cpp | 51 + .../tuple.tuple/tuple.cnstr/UTypes.pass.cpp | 160 + .../tuple.tuple/tuple.cnstr/alloc.pass.cpp | 109 + .../tuple.cnstr/alloc_UTypes.pass.cpp | 152 + .../tuple.cnstr/alloc_const_Types.fail.cpp | 43 + .../tuple.cnstr/alloc_const_Types.pass.cpp | 98 + .../tuple.cnstr/alloc_const_pair.pass.cpp | 59 + .../tuple.cnstr/alloc_convert_copy.fail.cpp | 43 + .../tuple.cnstr/alloc_convert_copy.pass.cpp | 90 + .../tuple.cnstr/alloc_convert_move.fail.cpp | 36 + .../tuple.cnstr/alloc_convert_move.pass.cpp | 104 + .../tuple.cnstr/alloc_copy.pass.cpp | 81 + .../tuple.cnstr/alloc_move.pass.cpp | 80 + .../tuple.cnstr/alloc_move_pair.pass.cpp | 55 + .../tuple.cnstr/const_Types.fail.cpp | 48 + .../tuple.cnstr/const_Types.pass.cpp | 163 + .../tuple.cnstr/const_Types2.fail.cpp | 27 + .../tuple.cnstr/const_pair.pass.cpp | 46 + .../tuple.cnstr/convert_copy.pass.cpp | 140 + .../tuple.cnstr/convert_move.pass.cpp | 104 + .../tuple.tuple/tuple.cnstr/copy.fail.cpp | 30 + .../tuple.tuple/tuple.cnstr/copy.pass.cpp | 70 + .../tuple.tuple/tuple.cnstr/default.pass.cpp | 110 + .../tuple.tuple/tuple.cnstr/dtor.pass.cpp | 39 + .../implicit_deduction_guides.pass.cpp | 156 + .../tuple.tuple/tuple.cnstr/move.pass.cpp | 125 + .../tuple.cnstr/move_pair.pass.cpp | 48 + .../tuple.cnstr/test_lazy_sfinae.pass.cpp | 102 + .../tuple_array_template_depth.pass.cpp | 36 + .../tuple.creation/forward_as_tuple.pass.cpp | 88 + .../tuple.creation/make_tuple.pass.cpp | 54 + .../tuple.tuple/tuple.creation/tie.pass.cpp | 64 + .../tuple.creation/tuple_cat.pass.cpp | 242 + .../tuple.tuple/tuple.elem/get_const.fail.cpp | 41 + .../tuple.tuple/tuple.elem/get_const.pass.cpp | 68 + .../tuple.elem/get_const_rv.fail.cpp | 34 + .../tuple.elem/get_const_rv.pass.cpp | 80 + .../tuple.elem/get_non_const.pass.cpp | 85 + .../tuple.tuple/tuple.elem/get_rv.pass.cpp | 33 + .../tuple.elem/tuple.by.type.fail.cpp | 39 + .../tuple.elem/tuple.by.type.pass.cpp | 94 + .../tuple.helper/tuple.include.array.pass.cpp | 52 + .../tuple.include.utility.pass.cpp | 50 + .../tuple.helper/tuple_element.fail.cpp | 34 + .../tuple.helper/tuple_element.pass.cpp | 51 + .../tuple.helper/tuple_size.fail.cpp | 27 + .../tuple.helper/tuple_size.pass.cpp | 42 + .../tuple_size_incomplete.fail.cpp | 63 + .../tuple_size_incomplete.pass.cpp | 67 + .../tuple_size_structured_bindings.pass.cpp | 150 + .../tuple.helper/tuple_size_v.fail.cpp | 26 + .../tuple.helper/tuple_size_v.pass.cpp | 43 + .../tuple_size_value_sfinae.pass.cpp | 39 + .../tuple/tuple.tuple/tuple.rel/eq.pass.cpp | 158 + .../tuple/tuple.tuple/tuple.rel/lt.pass.cpp | 212 + .../tuple.special/non_member_swap.pass.cpp | 62 + .../tuple.swap/member_swap.pass.cpp | 61 + .../tuple.traits/uses_allocator.pass.cpp | 46 + .../type.index.hash/enabled_hash.pass.cpp | 23 + .../type.index/type.index.hash/hash.pass.cpp | 32 + .../type.index.members/ctor.pass.cpp | 25 + .../type.index/type.index.members/eq.pass.cpp | 27 + .../type.index.members/hash_code.pass.cpp | 24 + .../type.index/type.index.members/lt.pass.cpp | 45 + .../type.index.members/name.pass.cpp | 25 + .../type.index.overview/copy_assign.pass.cpp | 26 + .../type.index.overview/copy_ctor.pass.cpp | 24 + .../hash_type_index.pass.cpp | 38 + .../utilities.general/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../hash.requirements/nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../nothing_to_do.pass.cpp | 12 + .../utility/as_const/as_const.fail.cpp | 22 + .../utility/as_const/as_const.pass.cpp | 46 + .../utility/declval/declval.pass.cpp | 32 + .../utility/exchange/exchange.pass.cpp | 84 + .../utility/forward/forward.fail.cpp | 53 + .../utility/forward/forward.pass.cpp | 91 + .../utility/forward/forward_03.pass.cpp | 58 + .../utilities/utility/forward/move.fail.cpp | 34 + .../utilities/utility/forward/move.pass.cpp | 121 + .../utility/forward/move_if_noexcept.pass.cpp | 75 + .../utility/operators/rel_ops.pass.cpp | 49 + .../utility/pairs/nothing_to_do.pass.cpp | 12 + .../pairs/pair.astuple/get_const.fail.cpp | 30 + .../pairs/pair.astuple/get_const.pass.cpp | 40 + .../pairs/pair.astuple/get_const_rv.pass.cpp | 66 + .../pairs/pair.astuple/get_non_const.pass.cpp | 53 + .../pairs/pair.astuple/get_rv.pass.cpp | 32 + .../pairs/pair.astuple/pairs.by.type.pass.cpp | 85 + .../pair.astuple/pairs.by.type1.fail.cpp | 21 + .../pair.astuple/pairs.by.type2.fail.cpp | 21 + .../pair.astuple/pairs.by.type3.fail.cpp | 21 + .../pairs/pair.astuple/tuple_element.fail.cpp | 22 + .../pairs/pair.astuple/tuple_element.pass.cpp | 55 + .../pairs/pair.astuple/tuple_size.pass.cpp | 36 + .../piecewise_construct.pass.cpp | 55 + .../pairs.general/nothing_to_do.pass.cpp | 12 + .../utility/pairs/pairs.pair/U_V.pass.cpp | 100 + .../pairs.pair/assign_const_pair_U_V.pass.cpp | 52 + .../pairs/pairs.pair/assign_pair.pass.cpp | 101 + .../pairs.pair/assign_pair_cxx03.pass.cpp | 49 + .../pairs/pairs.pair/assign_rv_pair.pass.cpp | 96 + .../pairs.pair/assign_rv_pair_U_V.pass.cpp | 59 + .../const_first_const_second.pass.cpp | 98 + .../const_first_const_second_cxx03.pass.cpp | 42 + .../pairs/pairs.pair/const_pair_U_V.pass.cpp | 181 + .../pairs.pair/const_pair_U_V_cxx03.pass.cpp | 29 + .../pairs/pairs.pair/copy_ctor.pass.cpp | 39 + .../pairs/pairs.pair/default-sfinae.pass.cpp | 164 + .../utility/pairs/pairs.pair/default.pass.cpp | 55 + .../utility/pairs/pairs.pair/dtor.pass.cpp | 36 + .../implicit_deduction_guides.pass.cpp | 80 + .../pairs/pairs.pair/move_ctor.pass.cpp | 44 + .../pairs.pair/not_constexpr_cxx11.fail.cpp | 57 + .../pairs/pairs.pair/piecewise.pass.cpp | 35 + .../pairs/pairs.pair/rv_pair_U_V.pass.cpp | 177 + .../special_member_generation_test.pass.cpp | 127 + .../utility/pairs/pairs.pair/swap.pass.cpp | 50 + .../pairs.pair/trivial_copy_move.pass.cpp | 56 + .../utility/pairs/pairs.pair/types.pass.cpp | 26 + .../pairs/pairs.spec/comparison.pass.cpp | 97 + .../pairs/pairs.spec/make_pair.pass.cpp | 52 + .../pairs/pairs.spec/non_member_swap.pass.cpp | 31 + test/std/utilities/utility/synopsis.pass.cpp | 22 + .../utility/utility.inplace/inplace.pass.cpp | 74 + .../utility/utility.swap/swap.pass.cpp | 103 + .../utility/utility.swap/swap_array.pass.cpp | 101 + .../bad_variant_access.pass.cpp | 44 + .../variant.general/nothing_to_do.pass.cpp | 11 + .../variant/variant.get/get_if_index.pass.cpp | 132 + .../variant/variant.get/get_if_type.pass.cpp | 130 + .../variant/variant.get/get_index.pass.cpp | 294 + .../variant/variant.get/get_type.pass.cpp | 294 + .../variant.get/holds_alternative.pass.cpp | 38 + .../variant.hash/enabled_hash.pass.cpp | 23 + .../variant/variant.hash/hash.pass.cpp | 159 + .../variant_alternative.fail.cpp | 32 + .../variant_alternative.pass.cpp | 77 + .../variant.helpers/variant_size.pass.cpp | 44 + .../variant.monostate.relops/relops.pass.cpp | 55 + .../variant.monostate/monostate.pass.cpp | 28 + .../variant/variant.relops/relops.pass.cpp | 227 + .../variant.synopsis/variant_npos.pass.cpp | 21 + .../variant.variant/variant.assign/T.pass.cpp | 263 + .../variant.assign/copy.pass.cpp | 594 + .../variant.assign/move.pass.cpp | 509 + .../variant.variant/variant.ctor/T.pass.cpp | 126 + .../variant.ctor/copy.pass.cpp | 273 + .../variant.ctor/default.pass.cpp | 119 + .../variant.ctor/in_place_index_args.pass.cpp | 110 + .../in_place_index_init_list_args.pass.cpp | 109 + .../variant.ctor/in_place_type_args.pass.cpp | 120 + .../in_place_type_init_list_args.pass.cpp | 110 + .../variant.ctor/move.pass.cpp | 336 + .../variant.dtor/dtor.pass.cpp | 75 + .../variant.mod/emplace_index_args.pass.cpp | 165 + .../emplace_index_init_list_args.pass.cpp | 98 + .../variant.mod/emplace_type_args.pass.cpp | 165 + .../emplace_type_init_list_args.pass.cpp | 98 + .../variant.status/index.pass.cpp | 63 + .../valueless_by_exception.pass.cpp | 56 + .../variant.swap/swap.pass.cpp | 598 + .../variant.variant/variant_array.fail.cpp | 33 + .../variant.variant/variant_empty.fail.cpp | 26 + .../variant_reference.fail.cpp | 28 + .../variant.variant/variant_void.fail.cpp | 33 + .../variant/variant.visit/visit.pass.cpp | 319 + test/support/Counter.h | 56 + test/support/DefaultOnly.h | 35 + test/support/MoveOnly.h | 55 + test/support/allocators.h | 191 + test/support/any_helpers.h | 431 + test/support/archetypes.hpp | 388 + test/support/archetypes.ipp | 173 + test/support/asan_testing.h | 37 + test/support/assert_checkpoint.h | 73 + test/support/charconv_test_helpers.h | 232 + test/support/cmpxchg_loop.h | 60 + test/support/constexpr_char_traits.hpp | 139 + test/support/container_test_types.h | 518 + test/support/controlled_allocators.hpp | 502 + test/support/coroutine_types.h | 75 + test/support/count_new.hpp | 486 + test/support/counting_predicates.hpp | 52 + test/support/debug_mode_helper.h | 386 + test/support/deleter_types.h | 446 + test/support/demangle.h | 47 + test/support/disable_missing_braces_warning.h | 20 + test/support/emplace_constructible.h | 74 + test/support/experimental_any_helpers.h | 328 + test/support/external_threads.cpp | 10 + .../support/filesystem_dynamic_test_helper.py | 85 + test/support/filesystem_include.hpp | 13 + test/support/filesystem_test_helper.hpp | 521 + test/support/format_string.hpp | 71 + test/support/hexfloat.h | 50 + test/support/is_transparent.h | 85 + test/support/min_allocator.h | 408 + test/support/msvc_stdlib_force_include.hpp | 88 + test/support/nasty_containers.hpp | 313 + test/support/nasty_macros.hpp | 62 + test/support/nothing_to_do.pass.cpp | 14 + test/support/platform_support.h | 114 + test/support/poisoned_hash_helper.hpp | 245 + test/support/private_constructor.hpp | 31 + test/support/propagate_const_helpers.h | 119 + test/support/rapid-cxx-test.hpp | 866 + test/support/set_windows_crt_report_mode.h | 36 + .../test_convertible_header.pass.cpp | 68 + .../test.support/test_demangle.pass.cpp | 38 + .../test_macros_header_exceptions.fail.cpp | 24 + .../test_macros_header_exceptions.pass.cpp | 24 + .../test_macros_header_rtti.fail.cpp | 29 + .../test_macros_header_rtti.pass.cpp | 29 + .../test_poisoned_hash_helper.pass.cpp | 30 + ...c1xx_broken_is_trivially_copyable.pass.cpp | 35 + .../c1xx_broken_za_ctor_check.pass.cpp | 41 + test/support/test_allocator.h | 447 + test/support/test_comparisons.h | 175 + test/support/test_convertible.hpp | 42 + test/support/test_iterators.h | 552 + test/support/test_macros.h | 289 + test/support/test_memory_resource.hpp | 171 + test/support/test_workarounds.h | 27 + test/support/tracked_value.h | 60 + test/support/type_id.h | 93 + test/support/unique_ptr_test_helper.h | 158 + test/support/user_defined_integral.hpp | 52 + test/support/uses_alloc_types.hpp | 391 + test/support/variant_test_helpers.hpp | 81 + test/support/verbose_assert.h | 222 + utils/cat_files.py | 46 + utils/gen_link_script.py | 84 + utils/google-benchmark/.gitignore | 46 + utils/google-benchmark/AUTHORS | 47 + utils/google-benchmark/CMakeLists.txt | 262 + utils/google-benchmark/CONTRIBUTING.md | 58 + utils/google-benchmark/CONTRIBUTORS | 66 + utils/google-benchmark/LICENSE | 202 + utils/google-benchmark/README.LLVM | 6 + utils/google-benchmark/README.md | 950 + .../cmake/AddCXXCompilerFlag.cmake | 74 + .../cmake/CXXFeatureCheck.cmake | 64 + utils/google-benchmark/cmake/Config.cmake.in | 1 + .../cmake/GetGitVersion.cmake | 54 + .../google-benchmark/cmake/HandleGTest.cmake | 113 + utils/google-benchmark/cmake/benchmark.pc.in | 11 + .../cmake/gnu_posix_regex.cpp | 12 + .../cmake/llvm-toolchain.cmake | 8 + utils/google-benchmark/cmake/posix_regex.cpp | 14 + utils/google-benchmark/cmake/split_list.cmake | 3 + utils/google-benchmark/cmake/std_regex.cpp | 10 + utils/google-benchmark/cmake/steady_clock.cpp | 7 + .../cmake/thread_safety_attributes.cpp | 4 + utils/google-benchmark/docs/AssemblyTests.md | 147 + utils/google-benchmark/docs/tools.md | 242 + .../include/benchmark/benchmark.h | 1467 + utils/google-benchmark/releasing.md | 16 + utils/google-benchmark/src/CMakeLists.txt | 108 + utils/google-benchmark/src/arraysize.h | 33 + utils/google-benchmark/src/benchmark.cc | 640 + .../src/benchmark_api_internal.h | 47 + utils/google-benchmark/src/benchmark_main.cc | 17 + .../src/benchmark_register.cc | 461 + .../google-benchmark/src/benchmark_register.h | 33 + utils/google-benchmark/src/check.h | 82 + utils/google-benchmark/src/colorprint.cc | 188 + utils/google-benchmark/src/colorprint.h | 33 + .../google-benchmark/src/commandlineflags.cc | 218 + utils/google-benchmark/src/commandlineflags.h | 79 + utils/google-benchmark/src/complexity.cc | 223 + utils/google-benchmark/src/complexity.h | 55 + .../google-benchmark/src/console_reporter.cc | 182 + utils/google-benchmark/src/counter.cc | 75 + utils/google-benchmark/src/counter.h | 26 + utils/google-benchmark/src/csv_reporter.cc | 149 + utils/google-benchmark/src/cycleclock.h | 177 + utils/google-benchmark/src/internal_macros.h | 100 + utils/google-benchmark/src/json_reporter.cc | 195 + utils/google-benchmark/src/log.h | 74 + utils/google-benchmark/src/mutex.h | 155 + utils/google-benchmark/src/re.h | 158 + utils/google-benchmark/src/reporter.cc | 87 + utils/google-benchmark/src/sleep.cc | 51 + utils/google-benchmark/src/sleep.h | 15 + utils/google-benchmark/src/statistics.cc | 177 + utils/google-benchmark/src/statistics.h | 37 + utils/google-benchmark/src/string_util.cc | 261 + utils/google-benchmark/src/string_util.h | 56 + utils/google-benchmark/src/sysinfo.cc | 587 + utils/google-benchmark/src/thread_manager.h | 66 + utils/google-benchmark/src/thread_timer.h | 69 + utils/google-benchmark/src/timers.cc | 217 + utils/google-benchmark/src/timers.h | 48 + utils/google-benchmark/test/CMakeLists.txt | 248 + utils/google-benchmark/test/basic_test.cc | 136 + .../google-benchmark/test/benchmark_gtest.cc | 33 + utils/google-benchmark/test/benchmark_test.cc | 245 + .../test/clobber_memory_assembly_test.cc | 64 + .../google-benchmark/test/complexity_test.cc | 168 + utils/google-benchmark/test/cxx03_test.cc | 63 + .../google-benchmark/test/diagnostics_test.cc | 80 + .../test/donotoptimize_assembly_test.cc | 163 + .../test/donotoptimize_test.cc | 52 + utils/google-benchmark/test/filter_test.cc | 104 + utils/google-benchmark/test/fixture_test.cc | 49 + utils/google-benchmark/test/link_main_test.cc | 8 + utils/google-benchmark/test/map_test.cc | 57 + .../test/multiple_ranges_test.cc | 97 + utils/google-benchmark/test/options_test.cc | 65 + utils/google-benchmark/test/output_test.h | 206 + .../test/output_test_helper.cc | 425 + .../test/register_benchmark_test.cc | 184 + .../test/reporter_output_test.cc | 385 + .../test/skip_with_error_test.cc | 189 + .../test/state_assembly_test.cc | 68 + .../google-benchmark/test/statistics_gtest.cc | 28 + .../test/string_util_gtest.cc | 146 + .../test/templated_fixture_test.cc | 28 + .../test/user_counters_tabular_test.cc | 252 + .../test/user_counters_test.cc | 380 + utils/google-benchmark/tools/compare.py | 373 + utils/google-benchmark/tools/compare_bench.py | 67 + .../tools/gbench/Inputs/test1_run1.json | 102 + .../tools/gbench/Inputs/test1_run2.json | 102 + .../tools/gbench/Inputs/test2_run.json | 81 + .../tools/gbench/Inputs/test3_run0.json | 39 + .../tools/gbench/Inputs/test3_run1.json | 39 + .../google-benchmark/tools/gbench/__init__.py | 8 + utils/google-benchmark/tools/gbench/report.py | 352 + utils/google-benchmark/tools/gbench/util.py | 159 + utils/google-benchmark/tools/strip_asm.py | 151 + utils/libcxx/__init__.py | 17 + utils/libcxx/compiler.py | 291 + utils/libcxx/sym_check/__init__.py | 17 + utils/libcxx/sym_check/diff.py | 103 + utils/libcxx/sym_check/extract.py | 194 + utils/libcxx/sym_check/match.py | 40 + utils/libcxx/sym_check/util.py | 268 + utils/libcxx/test/__init__.py | 0 utils/libcxx/test/config.py | 1179 + utils/libcxx/test/executor.py | 198 + utils/libcxx/test/format.py | 265 + utils/libcxx/test/target_info.py | 284 + utils/libcxx/test/tracing.py | 43 + utils/libcxx/util.py | 286 + utils/merge_archives.py | 136 + utils/not.py | 44 + utils/sym_diff.py | 73 + utils/sym_extract.py | 42 + utils/sym_match.py | 51 + utils/symcheck-blacklists/linux_blacklist.txt | 19 + utils/symcheck-blacklists/osx_blacklist.txt | 19 + 6418 files changed, 734153 insertions(+) create mode 100644 .arcconfig create mode 100644 .clang-format create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 CREDITS.TXT create mode 100644 LICENSE.TXT create mode 100644 NOTES.TXT create mode 100644 TODO.TXT create mode 100644 appveyor-reqs-install.cmd create mode 100644 appveyor.yml create mode 100644 benchmarks/CMakeLists.txt create mode 100644 benchmarks/ContainerBenchmarks.hpp create mode 100644 benchmarks/GenerateInput.hpp create mode 100644 benchmarks/algorithms.bench.cpp create mode 100644 benchmarks/filesystem.bench.cpp create mode 100644 benchmarks/string.bench.cpp create mode 100644 benchmarks/stringstream.bench.cpp create mode 100644 benchmarks/unordered_set_operations.bench.cpp create mode 100644 benchmarks/util_smartptr.bench.cpp create mode 100644 benchmarks/vector_operations.bench.cpp create mode 100644 cmake/Modules/CheckLibcxxAtomic.cmake create mode 100644 cmake/Modules/CodeCoverage.cmake create mode 100644 cmake/Modules/HandleCompilerRT.cmake create mode 100644 cmake/Modules/HandleLibCXXABI.cmake create mode 100644 cmake/Modules/HandleLibcxxFlags.cmake create mode 100644 cmake/Modules/HandleOutOfTreeLLVM.cmake create mode 100644 cmake/Modules/MacroEnsureOutOfSourceBuild.cmake create mode 100644 cmake/config-ix.cmake create mode 100644 docs/BuildingLibcxx.rst create mode 100644 docs/CMakeLists.txt create mode 100644 docs/DesignDocs/ABIVersioning.rst create mode 100644 docs/DesignDocs/AvailabilityMarkup.rst create mode 100644 docs/DesignDocs/CapturingConfigInfo.rst create mode 100644 docs/DesignDocs/DebugMode.rst create mode 100644 docs/DesignDocs/FileTimeType.rst create mode 100644 docs/DesignDocs/ThreadingSupportAPI.rst create mode 100644 docs/DesignDocs/VisibilityMacros.rst create mode 100644 docs/Makefile.sphinx create mode 100644 docs/README.txt create mode 100644 docs/TestingLibcxx.rst create mode 100644 docs/UsingLibcxx.rst create mode 100644 docs/conf.py create mode 100644 docs/index.rst create mode 100644 fuzzing/RoutineNames.txt create mode 100644 fuzzing/fuzz_test.cpp create mode 100644 fuzzing/fuzzing.cpp create mode 100644 fuzzing/fuzzing.h create mode 100644 include/CMakeLists.txt create mode 100644 include/__bit_reference create mode 100644 include/__bsd_locale_defaults.h create mode 100644 include/__bsd_locale_fallbacks.h create mode 100644 include/__config create mode 100644 include/__config_site.in create mode 100644 include/__debug create mode 100644 include/__errc create mode 100644 include/__functional_03 create mode 100644 include/__functional_base create mode 100644 include/__functional_base_03 create mode 100644 include/__hash_table create mode 100644 include/__libcpp_version create mode 100644 include/__locale create mode 100644 include/__mutex_base create mode 100644 include/__node_handle create mode 100644 include/__nullptr create mode 100644 include/__split_buffer create mode 100644 include/__sso_allocator create mode 100644 include/__std_stream create mode 100644 include/__string create mode 100644 include/__threading_support create mode 100644 include/__tree create mode 100644 include/__tuple create mode 100644 include/__undef_macros create mode 100644 include/algorithm create mode 100644 include/any create mode 100644 include/array create mode 100644 include/atomic create mode 100644 include/bitset create mode 100644 include/cassert create mode 100644 include/ccomplex create mode 100644 include/cctype create mode 100644 include/cerrno create mode 100644 include/cfenv create mode 100644 include/cfloat create mode 100644 include/charconv create mode 100644 include/chrono create mode 100644 include/cinttypes create mode 100644 include/ciso646 create mode 100644 include/climits create mode 100644 include/clocale create mode 100644 include/cmath create mode 100644 include/codecvt create mode 100644 include/compare create mode 100644 include/complex create mode 100644 include/complex.h create mode 100644 include/condition_variable create mode 100644 include/csetjmp create mode 100644 include/csignal create mode 100644 include/cstdarg create mode 100644 include/cstdbool create mode 100644 include/cstddef create mode 100644 include/cstdint create mode 100644 include/cstdio create mode 100644 include/cstdlib create mode 100644 include/cstring create mode 100644 include/ctgmath create mode 100644 include/ctime create mode 100644 include/ctype.h create mode 100644 include/cwchar create mode 100644 include/cwctype create mode 100644 include/deque create mode 100644 include/errno.h create mode 100644 include/exception create mode 100644 include/experimental/__config create mode 100644 include/experimental/__memory create mode 100644 include/experimental/algorithm create mode 100644 include/experimental/any create mode 100644 include/experimental/chrono create mode 100644 include/experimental/coroutine create mode 100644 include/experimental/deque create mode 100644 include/experimental/dynarray create mode 100644 include/experimental/filesystem create mode 100644 include/experimental/forward_list create mode 100644 include/experimental/functional create mode 100644 include/experimental/iterator create mode 100644 include/experimental/list create mode 100644 include/experimental/map create mode 100644 include/experimental/memory_resource create mode 100644 include/experimental/numeric create mode 100644 include/experimental/optional create mode 100644 include/experimental/propagate_const create mode 100644 include/experimental/ratio create mode 100644 include/experimental/regex create mode 100644 include/experimental/set create mode 100644 include/experimental/simd create mode 100644 include/experimental/string create mode 100644 include/experimental/string_view create mode 100644 include/experimental/system_error create mode 100644 include/experimental/tuple create mode 100644 include/experimental/type_traits create mode 100644 include/experimental/unordered_map create mode 100644 include/experimental/unordered_set create mode 100644 include/experimental/utility create mode 100644 include/experimental/vector create mode 100644 include/ext/__hash create mode 100644 include/ext/hash_map create mode 100644 include/ext/hash_set create mode 100644 include/filesystem create mode 100644 include/float.h create mode 100644 include/forward_list create mode 100644 include/fstream create mode 100644 include/functional create mode 100644 include/future create mode 100644 include/initializer_list create mode 100644 include/inttypes.h create mode 100644 include/iomanip create mode 100644 include/ios create mode 100644 include/iosfwd create mode 100644 include/iostream create mode 100644 include/istream create mode 100644 include/iterator create mode 100644 include/limits create mode 100644 include/limits.h create mode 100644 include/list create mode 100644 include/locale create mode 100644 include/locale.h create mode 100644 include/map create mode 100644 include/math.h create mode 100644 include/memory create mode 100644 include/module.modulemap create mode 100644 include/mutex create mode 100644 include/new create mode 100644 include/numeric create mode 100644 include/optional create mode 100644 include/ostream create mode 100644 include/queue create mode 100644 include/random create mode 100644 include/ratio create mode 100644 include/regex create mode 100644 include/scoped_allocator create mode 100644 include/set create mode 100644 include/setjmp.h create mode 100644 include/shared_mutex create mode 100644 include/span create mode 100644 include/sstream create mode 100644 include/stack create mode 100644 include/stdbool.h create mode 100644 include/stddef.h create mode 100644 include/stdexcept create mode 100644 include/stdint.h create mode 100644 include/stdio.h create mode 100644 include/stdlib.h create mode 100644 include/streambuf create mode 100644 include/string create mode 100644 include/string.h create mode 100644 include/string_view create mode 100644 include/strstream create mode 100644 include/support/android/locale_bionic.h create mode 100644 include/support/fuchsia/xlocale.h create mode 100644 include/support/ibm/limits.h create mode 100644 include/support/ibm/locale_mgmt_aix.h create mode 100644 include/support/ibm/support.h create mode 100644 include/support/ibm/xlocale.h create mode 100644 include/support/musl/xlocale.h create mode 100644 include/support/newlib/xlocale.h create mode 100644 include/support/solaris/floatingpoint.h create mode 100644 include/support/solaris/wchar.h create mode 100644 include/support/solaris/xlocale.h create mode 100644 include/support/win32/limits_msvc_win32.h create mode 100644 include/support/win32/locale_win32.h create mode 100644 include/support/xlocale/__nop_locale_mgmt.h create mode 100644 include/support/xlocale/__posix_l_fallback.h create mode 100644 include/support/xlocale/__strtonum_fallback.h create mode 100644 include/support/xlocale/xlocale.h create mode 100644 include/system_error create mode 100644 include/tgmath.h create mode 100644 include/thread create mode 100644 include/tuple create mode 100644 include/type_traits create mode 100644 include/typeindex create mode 100644 include/typeinfo create mode 100644 include/unordered_map create mode 100644 include/unordered_set create mode 100644 include/utility create mode 100644 include/valarray create mode 100644 include/variant create mode 100644 include/vector create mode 100644 include/version create mode 100644 include/wchar.h create mode 100644 include/wctype.h create mode 100644 lib/CMakeLists.txt create mode 100644 lib/abi/3.9/x86_64-apple-darwin16.abilist create mode 100644 lib/abi/3.9/x86_64-linux-gnu.abilist create mode 100644 lib/abi/4.0/x86_64-apple-darwin16.abilist create mode 100644 lib/abi/4.0/x86_64-unknown-linux-gnu.abilist create mode 100644 lib/abi/5.0/x86_64-apple-darwin16.abilist create mode 100644 lib/abi/5.0/x86_64-unknown-linux-gnu.abilist create mode 100644 lib/abi/6.0/x86_64-apple-darwin16.abilist create mode 100644 lib/abi/6.0/x86_64-unknown-linux-gnu.abilist create mode 100644 lib/abi/CHANGELOG.TXT create mode 100644 lib/abi/CMakeLists.txt create mode 100644 lib/abi/README.TXT create mode 100644 lib/abi/x86_64-apple-darwin.v1.abilist create mode 100644 lib/abi/x86_64-apple-darwin.v2.abilist create mode 100644 lib/abi/x86_64-unknown-linux-gnu.v1.abilist create mode 100644 lib/libc++abi-new-delete.exp create mode 100644 lib/libc++abi.exp create mode 100644 lib/libc++abi2.exp create mode 100644 lib/libc++sjlj-abi.exp create mode 100644 lib/libc++unexp.exp create mode 100644 lib/notweak.exp create mode 100644 lib/weak.exp create mode 100644 src/algorithm.cpp create mode 100644 src/any.cpp create mode 100644 src/bind.cpp create mode 100644 src/charconv.cpp create mode 100644 src/chrono.cpp create mode 100644 src/condition_variable.cpp create mode 100644 src/debug.cpp create mode 100644 src/exception.cpp create mode 100644 src/experimental/memory_resource.cpp create mode 100644 src/filesystem/directory_iterator.cpp create mode 100644 src/filesystem/filesystem_common.h create mode 100644 src/filesystem/int128_builtins.cpp create mode 100644 src/filesystem/operations.cpp create mode 100644 src/functional.cpp create mode 100644 src/future.cpp create mode 100644 src/hash.cpp create mode 100644 src/include/apple_availability.h create mode 100644 src/include/atomic_support.h create mode 100644 src/include/config_elast.h create mode 100644 src/include/refstring.h create mode 100644 src/ios.cpp create mode 100644 src/iostream.cpp create mode 100644 src/locale.cpp create mode 100644 src/memory.cpp create mode 100644 src/mutex.cpp create mode 100644 src/new.cpp create mode 100644 src/optional.cpp create mode 100644 src/random.cpp create mode 100644 src/regex.cpp create mode 100644 src/shared_mutex.cpp create mode 100644 src/stdexcept.cpp create mode 100644 src/string.cpp create mode 100644 src/strstream.cpp create mode 100644 src/support/runtime/exception_fallback.ipp create mode 100644 src/support/runtime/exception_glibcxx.ipp create mode 100644 src/support/runtime/exception_libcxxabi.ipp create mode 100644 src/support/runtime/exception_libcxxrt.ipp create mode 100644 src/support/runtime/exception_msvc.ipp create mode 100644 src/support/runtime/exception_pointer_cxxabi.ipp create mode 100644 src/support/runtime/exception_pointer_glibcxx.ipp create mode 100644 src/support/runtime/exception_pointer_msvc.ipp create mode 100644 src/support/runtime/exception_pointer_unimplemented.ipp create mode 100644 src/support/runtime/new_handler_fallback.ipp create mode 100644 src/support/solaris/README create mode 100644 src/support/solaris/mbsnrtowcs.inc create mode 100644 src/support/solaris/wcsnrtombs.inc create mode 100644 src/support/solaris/xlocale.cpp create mode 100644 src/support/win32/locale_win32.cpp create mode 100644 src/support/win32/support.cpp create mode 100644 src/support/win32/thread_win32.cpp create mode 100644 src/system_error.cpp create mode 100644 src/thread.cpp create mode 100644 src/typeinfo.cpp create mode 100644 src/utility.cpp create mode 100644 src/valarray.cpp create mode 100644 src/variant.cpp create mode 100644 src/vector.cpp create mode 100644 test/CMakeLists.txt create mode 100644 test/libcxx/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.cxx1z.pass.cpp create mode 100644 test/libcxx/algorithms/debug_less.pass.cpp create mode 100644 test/libcxx/algorithms/version.pass.cpp create mode 100644 test/libcxx/atomics/atomics.align/align.pass.sh.cpp create mode 100644 test/libcxx/atomics/atomics.flag/init_bool.pass.cpp create mode 100644 test/libcxx/atomics/diagnose_invalid_memory_order.fail.cpp create mode 100644 test/libcxx/atomics/libcpp-has-no-threads.fail.cpp create mode 100644 test/libcxx/atomics/libcpp-has-no-threads.pass.cpp create mode 100644 test/libcxx/atomics/version.pass.cpp create mode 100644 test/libcxx/containers/associative/map/version.pass.cpp create mode 100644 test/libcxx/containers/associative/non_const_comparator.fail.cpp create mode 100644 test/libcxx/containers/associative/set/version.pass.cpp create mode 100644 test/libcxx/containers/associative/tree_balance_after_insert.pass.cpp create mode 100644 test/libcxx/containers/associative/tree_key_value_traits.pass.cpp create mode 100644 test/libcxx/containers/associative/tree_left_rotate.pass.cpp create mode 100644 test/libcxx/containers/associative/tree_remove.pass.cpp create mode 100644 test/libcxx/containers/associative/tree_right_rotate.pass.cpp create mode 100644 test/libcxx/containers/associative/undef_min_max.pass.cpp create mode 100644 test/libcxx/containers/container.adaptors/queue/version.pass.cpp create mode 100644 test/libcxx/containers/container.adaptors/stack/version.pass.cpp create mode 100644 test/libcxx/containers/gnu_cxx/hash_map.pass.cpp create mode 100644 test/libcxx/containers/gnu_cxx/hash_set.pass.cpp create mode 100644 test/libcxx/containers/sequences/array/array.zero/db_back.pass.cpp create mode 100644 test/libcxx/containers/sequences/array/array.zero/db_front.pass.cpp create mode 100644 test/libcxx/containers/sequences/array/array.zero/db_indexing.pass.cpp create mode 100644 test/libcxx/containers/sequences/array/version.pass.cpp create mode 100644 test/libcxx/containers/sequences/deque/incomplete.pass.cpp create mode 100644 test/libcxx/containers/sequences/deque/version.pass.cpp create mode 100644 test/libcxx/containers/sequences/forwardlist/version.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.cons/db_copy.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.cons/db_move.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/emplace_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_db2.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_iter_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_iter_db2.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_iter_db3.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/erase_iter_iter_db4.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/insert_iter_iter_iter_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/insert_iter_rvalue_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/insert_iter_size_value_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/insert_iter_value_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.modifiers/pop_back_db1.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.ops/db_splice_pos_list.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.ops/db_splice_pos_list_iter.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/list.ops/db_splice_pos_list_iter_iter.pass.cpp create mode 100644 test/libcxx/containers/sequences/list/version.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/asan.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/asan_throw.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/const_value_type.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_back.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_cback.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_cfront.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_cindex.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_front.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_index.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_2.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_3.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_4.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_5.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_6.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_7.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/db_iterators_8.pass.cpp create mode 100644 test/libcxx/containers/sequences/vector/version.pass.cpp create mode 100644 test/libcxx/containers/unord/key_value_traits.pass.cpp create mode 100644 test/libcxx/containers/unord/next_pow2.pass.cpp create mode 100644 test/libcxx/containers/unord/next_prime.pass.cpp create mode 100644 test/libcxx/containers/unord/non_const_comparator.fail.cpp create mode 100644 test/libcxx/containers/unord/unord.map/db_iterators_7.pass.cpp create mode 100644 test/libcxx/containers/unord/unord.map/db_iterators_8.pass.cpp create mode 100644 test/libcxx/containers/unord/unord.map/db_local_iterators_7.pass.cpp create mode 100644 test/libcxx/containers/unord/unord.map/db_local_iterators_8.pass.cpp create mode 100644 test/libcxx/containers/unord/unord.map/version.pass.cpp create mode 100644 test/libcxx/containers/unord/unord.set/missing_hash_specialization.fail.cpp create mode 100644 test/libcxx/containers/unord/unord.set/version.pass.cpp create mode 100644 test/libcxx/debug/containers/db_associative_container_tests.pass.cpp create mode 100644 test/libcxx/debug/containers/db_sequence_container_iterators.pass.cpp create mode 100644 test/libcxx/debug/containers/db_string.pass.cpp create mode 100644 test/libcxx/debug/containers/db_unord_container_tests.pass.cpp create mode 100644 test/libcxx/debug/debug_abort.pass.cpp create mode 100644 test/libcxx/debug/debug_throw.pass.cpp create mode 100644 test/libcxx/debug/debug_throw_register.pass.cpp create mode 100644 test/libcxx/depr/depr.auto.ptr/auto.ptr/auto_ptr.cxx1z.pass.cpp create mode 100644 test/libcxx/depr/depr.c.headers/ciso646.pass.cpp create mode 100644 test/libcxx/depr/depr.c.headers/complex.h.pass.cpp create mode 100644 test/libcxx/depr/depr.c.headers/extern_c.pass.cpp create mode 100644 test/libcxx/depr/depr.c.headers/locale_h.pass.cpp create mode 100644 test/libcxx/depr/depr.c.headers/math_h.sh.cpp create mode 100644 test/libcxx/depr/depr.c.headers/tgmath_h.pass.cpp create mode 100644 test/libcxx/depr/depr.function.objects/depr.adaptors.cxx1z.pass.cpp create mode 100644 test/libcxx/depr/depr.str.strstreams/version.pass.cpp create mode 100644 test/libcxx/depr/enable_removed_cpp17_features.pass.cpp create mode 100644 test/libcxx/depr/exception.unexpected/get_unexpected.pass.cpp create mode 100644 test/libcxx/depr/exception.unexpected/set_unexpected.pass.cpp create mode 100644 test/libcxx/depr/exception.unexpected/unexpected.pass.cpp create mode 100644 test/libcxx/depr/exception.unexpected/unexpected_disabled_cpp17.fail.cpp create mode 100644 test/libcxx/diagnostics/assertions/version_cassert.pass.cpp create mode 100644 test/libcxx/diagnostics/errno/version_cerrno.pass.cpp create mode 100644 test/libcxx/diagnostics/nodiscard.fail.cpp create mode 100644 test/libcxx/diagnostics/nodiscard.pass.cpp create mode 100644 test/libcxx/diagnostics/std.exceptions/version.pass.cpp create mode 100644 test/libcxx/diagnostics/syserr/version.pass.cpp create mode 100644 test/libcxx/double_include.sh.cpp create mode 100644 test/libcxx/experimental/algorithms/header.algorithm.synop/includes.pass.cpp create mode 100644 test/libcxx/experimental/algorithms/version.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.cons/alloc.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.cons/default.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.cons/default_throws_bad_alloc.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.data/default.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.mutate/default.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/at.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/begin_end.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/capacity.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/front_back.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/indexing.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.traits/default.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/dynarray.zero/default.pass.cpp create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/lit.local.cfg create mode 100644 test/libcxx/experimental/containers/sequences/dynarray/nothing_to_do.pass.cpp create mode 100644 test/libcxx/experimental/filesystem/version.pass.cpp create mode 100644 test/libcxx/experimental/language.support/support.coroutines/dialect_support.sh.cpp create mode 100644 test/libcxx/experimental/language.support/support.coroutines/version.sh.cpp create mode 100644 test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/db_deallocate.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/db_deallocate.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_deque_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_forward_list_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_list_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_map_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_regex_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_set_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_string_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_unordered_map_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_unordered_set_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.aliases/header_vector_libcpp_version.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.global/global_memory_resource_lifetime.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.global/new_delete_resource_lifetime.pass.cpp create mode 100644 test/libcxx/experimental/memory/memory.resource.synop/version.pass.cpp create mode 100644 test/libcxx/experimental/utilities/meta/version.pass.cpp create mode 100644 test/libcxx/experimental/utilities/utility/version.pass.cpp create mode 100644 test/libcxx/extensions/hash/specializations.fail.cpp create mode 100644 test/libcxx/extensions/hash/specializations.pass.cpp create mode 100644 test/libcxx/extensions/hash_map/const_iterator.fail.cpp create mode 100644 test/libcxx/extensions/nothing_to_do.pass.cpp create mode 100644 test/libcxx/fuzzing/nth_element.cpp create mode 100644 test/libcxx/fuzzing/partial_sort.cpp create mode 100644 test/libcxx/fuzzing/partial_sort_copy.cpp create mode 100644 test/libcxx/fuzzing/partition.cpp create mode 100644 test/libcxx/fuzzing/partition_copy.cpp create mode 100644 test/libcxx/fuzzing/regex_ECMAScript.cpp create mode 100644 test/libcxx/fuzzing/regex_POSIX.cpp create mode 100644 test/libcxx/fuzzing/regex_awk.cpp create mode 100644 test/libcxx/fuzzing/regex_egrep.cpp create mode 100644 test/libcxx/fuzzing/regex_extended.cpp create mode 100644 test/libcxx/fuzzing/regex_grep.cpp create mode 100644 test/libcxx/fuzzing/sort.cpp create mode 100644 test/libcxx/fuzzing/stable_partition.cpp create mode 100644 test/libcxx/fuzzing/stable_sort.cpp create mode 100644 test/libcxx/fuzzing/unique.cpp create mode 100644 test/libcxx/fuzzing/unique_copy.cpp create mode 100644 test/libcxx/include_as_c.sh.cpp create mode 100644 test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/fopen.fail.cpp create mode 100644 test/libcxx/input.output/file.streams/c.files/no.global.filesystem.namespace/rename.fail.cpp create mode 100644 test/libcxx/input.output/file.streams/c.files/version_ccstdio.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/c.files/version_cinttypes.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/filebuf/traits_mismatch.fail.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/fstream.cons/wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/fstream.members/open_wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/ifstream.cons/test.dat create mode 100644 test/libcxx/input.output/file.streams/fstreams/ifstream.cons/wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/ifstream.members/open_wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/ifstream.members/test.dat create mode 100644 test/libcxx/input.output/file.streams/fstreams/ofstream.cons/wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/ofstream.members/open_wchar_pointer.pass.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/traits_mismatch.fail.cpp create mode 100644 test/libcxx/input.output/file.streams/fstreams/version.pass.cpp create mode 100644 test/libcxx/input.output/filesystems/class.directory_entry/directory_entry.mods/last_write_time.sh.cpp create mode 100644 test/libcxx/input.output/filesystems/class.path/path.itr/iterator_db.pass.cpp create mode 100644 test/libcxx/input.output/filesystems/class.path/path.itr/reverse_iterator_produces_diagnostic.fail.cpp create mode 100644 test/libcxx/input.output/filesystems/class.path/path.req/is_pathable.pass.cpp create mode 100644 test/libcxx/input.output/filesystems/convert_file_time.sh.cpp create mode 100644 test/libcxx/input.output/filesystems/lit.local.cfg create mode 100644 test/libcxx/input.output/filesystems/version.pass.cpp create mode 100644 test/libcxx/input.output/iostream.format/input.streams/traits_mismatch.fail.cpp create mode 100644 test/libcxx/input.output/iostream.format/input.streams/version.pass.cpp create mode 100644 test/libcxx/input.output/iostream.format/output.streams/traits_mismatch.fail.cpp create mode 100644 test/libcxx/input.output/iostream.format/output.streams/version.pass.cpp create mode 100644 test/libcxx/input.output/iostream.format/std.manip/version.pass.cpp create mode 100644 test/libcxx/input.output/iostream.forward/version.pass.cpp create mode 100644 test/libcxx/input.output/iostream.objects/version.pass.cpp create mode 100644 test/libcxx/input.output/iostreams.base/version.pass.cpp create mode 100644 test/libcxx/input.output/stream.buffers/version.pass.cpp create mode 100644 test/libcxx/input.output/string.streams/traits_mismatch.fail.cpp create mode 100644 test/libcxx/input.output/string.streams/version.pass.cpp create mode 100644 test/libcxx/iterators/failed.pass.cpp create mode 100644 test/libcxx/iterators/trivial_iterators.pass.cpp create mode 100644 test/libcxx/iterators/version.pass.cpp create mode 100644 test/libcxx/language.support/cmp/version.pass.cpp create mode 100644 test/libcxx/language.support/cstdint/version.pass.cpp create mode 100644 test/libcxx/language.support/cxa_deleted_virtual.pass.cpp create mode 100644 test/libcxx/language.support/has_c11_features.pass.cpp create mode 100644 test/libcxx/language.support/support.dynamic/alloc.errors/new.badlength/bad_array_length.pass.cpp create mode 100644 test/libcxx/language.support/support.dynamic/new_faligned_allocation.sh.cpp create mode 100644 test/libcxx/language.support/support.dynamic/version.pass.cpp create mode 100644 test/libcxx/language.support/support.exception/version.pass.cpp create mode 100644 test/libcxx/language.support/support.initlist/version.pass.cpp create mode 100644 test/libcxx/language.support/support.limits/c.limits/version_cfloat.pass.cpp create mode 100644 test/libcxx/language.support/support.limits/c.limits/version_climits.pass.cpp create mode 100644 test/libcxx/language.support/support.limits/limits/version.pass.cpp create mode 100644 test/libcxx/language.support/support.limits/version.pass.cpp create mode 100644 test/libcxx/language.support/support.rtti/version.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_csetjmp.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_csignal.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_cstdarg.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_cstdbool.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_cstdlib.pass.cpp create mode 100644 test/libcxx/language.support/support.runtime/version_ctime.pass.cpp create mode 100644 test/libcxx/language.support/support.types/version.pass.cpp create mode 100644 test/libcxx/libcpp_version.pass.cpp create mode 100644 test/libcxx/localization/c.locales/version.pass.cpp create mode 100644 test/libcxx/localization/locale.categories/__scan_keyword.pass.cpp create mode 100644 test/libcxx/localization/locale.stdcvt/version.pass.cpp create mode 100644 test/libcxx/localization/locales/locale.convenience/conversions/conversions.string/ctor_move.pass.cpp create mode 100644 test/libcxx/localization/locales/locale/locale.types/locale.facet/facet.pass.cpp create mode 100644 test/libcxx/localization/locales/locale/locale.types/locale.id/id.pass.cpp create mode 100644 test/libcxx/localization/version.pass.cpp create mode 100644 test/libcxx/memory/aligned_allocation_macro.pass.cpp create mode 100644 test/libcxx/memory/is_allocator.pass.cpp create mode 100644 test/libcxx/min_max_macros.sh.cpp create mode 100644 test/libcxx/modules/cinttypes_exports.sh.cpp create mode 100644 test/libcxx/modules/clocale_exports.sh.cpp create mode 100644 test/libcxx/modules/cstdint_exports.sh.cpp create mode 100644 test/libcxx/modules/inttypes_h_exports.sh.cpp create mode 100644 test/libcxx/modules/stdint_h_exports.sh.cpp create mode 100644 test/libcxx/numerics/c.math/constexpr-fns.pass.cpp create mode 100644 test/libcxx/numerics/c.math/ctgmath.pass.cpp create mode 100644 test/libcxx/numerics/c.math/fdelayed-template-parsing.sh.cpp create mode 100644 test/libcxx/numerics/c.math/tgmath_h.pass.cpp create mode 100644 test/libcxx/numerics/c.math/version_cmath.pass.cpp create mode 100644 test/libcxx/numerics/cfenv/version.pass.cpp create mode 100644 test/libcxx/numerics/complex.number/__sqr.pass.cpp create mode 100644 test/libcxx/numerics/complex.number/ccmplx/ccomplex.pass.cpp create mode 100644 test/libcxx/numerics/complex.number/version.pass.cpp create mode 100644 test/libcxx/numerics/numarray/version.pass.cpp create mode 100644 test/libcxx/numerics/numeric.ops/version.pass.cpp create mode 100644 test/libcxx/numerics/rand/rand.synopsis/version.pass.cpp create mode 100644 test/libcxx/selftest/not_test.sh.cpp create mode 100644 test/libcxx/selftest/test.arc.fail.mm create mode 100644 test/libcxx/selftest/test.arc.pass.mm create mode 100644 test/libcxx/selftest/test.fail.cpp create mode 100644 test/libcxx/selftest/test.fail.mm create mode 100644 test/libcxx/selftest/test.pass.cpp create mode 100644 test/libcxx/selftest/test.pass.mm create mode 100644 test/libcxx/selftest/test.sh.cpp create mode 100644 test/libcxx/selftest/test_macros.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/clear_and_shrink_db1.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_db1.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_db2.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_iter_db1.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_iter_db2.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_iter_db3.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_iter_iter_db4.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/erase_pop_back_db1.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp create mode 100644 test/libcxx/strings/basic.string/string.modifiers/insert_iter_size_char_db1.pass.cpp create mode 100644 test/libcxx/strings/c.strings/version_cctype.pass.cpp create mode 100644 test/libcxx/strings/c.strings/version_cstring.pass.cpp create mode 100644 test/libcxx/strings/c.strings/version_cuchar.pass.cpp create mode 100644 test/libcxx/strings/c.strings/version_cwchar.pass.cpp create mode 100644 test/libcxx/strings/c.strings/version_cwctype.pass.cpp create mode 100644 test/libcxx/strings/iterators.exceptions.pass.cpp create mode 100644 test/libcxx/strings/iterators.noexcept.pass.cpp create mode 100644 test/libcxx/strings/version.pass.cpp create mode 100644 test/libcxx/thread/futures/futures.promise/set_exception.pass.cpp create mode 100644 test/libcxx/thread/futures/futures.promise/set_exception_at_thread_exit.pass.cpp create mode 100644 test/libcxx/thread/futures/futures.task/types.pass.cpp create mode 100644 test/libcxx/thread/futures/version.pass.cpp create mode 100644 test/libcxx/thread/thread.condition/PR30202_notify_from_pthread_created_thread.pass.cpp create mode 100644 test/libcxx/thread/thread.condition/thread.condition.condvar/native_handle.pass.cpp create mode 100644 test/libcxx/thread/thread.condition/version.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/native_handle.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/native_handle.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread_safety_annotations_not_enabled.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread_safety_lock_guard.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread_safety_lock_unlock.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread_safety_missing_unlock.fail.cpp create mode 100644 test/libcxx/thread/thread.mutex/thread_safety_requires_capability.pass.cpp create mode 100644 test/libcxx/thread/thread.mutex/version.pass.cpp create mode 100644 test/libcxx/thread/thread.threads/thread.thread.class/thread.thread.member/native_handle.pass.cpp create mode 100644 test/libcxx/thread/thread.threads/thread.thread.class/types.pass.cpp create mode 100644 test/libcxx/thread/thread.threads/thread.thread.this/sleep_for.pass.cpp create mode 100644 test/libcxx/thread/thread.threads/version.pass.cpp create mode 100644 test/libcxx/type_traits/convert_to_integral.pass.cpp create mode 100644 test/libcxx/type_traits/is_floating_point.pass.cpp create mode 100644 test/libcxx/type_traits/lazy_metafunctions.pass.cpp create mode 100644 test/libcxx/utilities/any/size_and_alignment.pass.cpp create mode 100644 test/libcxx/utilities/any/small_type.pass.cpp create mode 100644 test/libcxx/utilities/any/version.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/func.require/bullet_1_2_3.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/func.require/bullet_4_5_6.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/func.require/bullet_7.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/func.require/invoke.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/func.require/invoke_helpers.h create mode 100644 test/libcxx/utilities/function.objects/refwrap/binary.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/refwrap/unary.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/unord.hash/murmur2_or_cityhash_ubsan_unsigned_overflow_ignored.pass.cpp create mode 100644 test/libcxx/utilities/function.objects/version.pass.cpp create mode 100644 test/libcxx/utilities/memory/util.dynamic.safety/get_pointer_safety_cxx03.pass.cpp create mode 100644 test/libcxx/utilities/memory/util.dynamic.safety/get_pointer_safety_new_abi.pass.cpp create mode 100644 test/libcxx/utilities/memory/util.smartptr/race_condition.pass.cpp create mode 100644 test/libcxx/utilities/memory/util.smartptr/util.smartptr.shared/function_type_default_deleter.fail.cpp create mode 100644 test/libcxx/utilities/memory/version.pass.cpp create mode 100644 test/libcxx/utilities/meta/is_referenceable.pass.cpp create mode 100644 test/libcxx/utilities/meta/meta.unary/meta.unary.prop/__has_operator_addressof.pass.cpp create mode 100644 test/libcxx/utilities/meta/meta.unary/meta.unary.prop/missing_is_aggregate_trait.fail.cpp create mode 100644 test/libcxx/utilities/meta/version.pass.cpp create mode 100644 test/libcxx/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp create mode 100644 test/libcxx/utilities/optional/optional.object/optional.object.assign/move.pass.cpp create mode 100644 test/libcxx/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp create mode 100644 test/libcxx/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp create mode 100644 test/libcxx/utilities/optional/version.pass.cpp create mode 100644 test/libcxx/utilities/ratio/version.pass.cpp create mode 100644 test/libcxx/utilities/template.bitset/includes.pass.cpp create mode 100644 test/libcxx/utilities/template.bitset/version.pass.cpp create mode 100644 test/libcxx/utilities/time/date.time/asctime.thread-unsafe.fail.cpp create mode 100644 test/libcxx/utilities/time/date.time/ctime.thread-unsafe.fail.cpp create mode 100644 test/libcxx/utilities/time/date.time/gmtime.thread-unsafe.fail.cpp create mode 100644 test/libcxx/utilities/time/date.time/localtime.thread-unsafe.fail.cpp create mode 100644 test/libcxx/utilities/time/version.pass.cpp create mode 100644 test/libcxx/utilities/tuple/tuple.tuple/empty_member.pass.cpp create mode 100644 test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/PR20855_tuple_ref_binding_diagnostics.fail.cpp create mode 100644 test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/disable_reduced_arity_initialization_extension.pass.cpp create mode 100644 test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/enable_reduced_arity_initialization_extension.pass.cpp create mode 100644 test/libcxx/utilities/tuple/version.pass.cpp create mode 100644 test/libcxx/utilities/type.index/version.pass.cpp create mode 100644 test/libcxx/utilities/utility/__is_inplace_index.pass.cpp create mode 100644 test/libcxx/utilities/utility/__is_inplace_type.pass.cpp create mode 100644 test/libcxx/utilities/utility/pairs/pairs.pair/assign_tuple_like.pass.cpp create mode 100644 test/libcxx/utilities/utility/pairs/pairs.pair/non_trivial_copy_move_ABI.pass.cpp create mode 100644 test/libcxx/utilities/utility/pairs/pairs.pair/pair.tuple_element.fail.cpp create mode 100644 test/libcxx/utilities/utility/pairs/pairs.pair/trivial_copy_move_ABI.pass.cpp create mode 100644 test/libcxx/utilities/utility/version.pass.cpp create mode 100644 test/libcxx/utilities/variant/variant.variant/variant.helper/variant_alternative.fail.cpp create mode 100644 test/libcxx/utilities/variant/variant.variant/variant_size.pass.cpp create mode 100644 test/libcxx/utilities/variant/version.pass.cpp create mode 100644 test/lit.cfg create mode 100644 test/lit.site.cfg.in create mode 100644 test/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.c.library/tested_elsewhere.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.copy/copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.copy/copy_backward.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.copy/copy_if.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.copy/copy_n.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.fill/fill.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.generate/generate.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.move/move.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.move/move_backward.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.partitions/is_partitioned.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.partitions/partition.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.partitions/partition_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.partitions/partition_point.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.partitions/stable_partition.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.sample/sample.fail.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.sample/sample.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.sample/sample.stable.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_rand.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.random.shuffle/random_shuffle_urng.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.remove/remove.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.remove/remove_copy_if.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.remove/remove_if.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.replace/replace.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.replace/replace_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.replace/replace_copy_if.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.replace/replace_if.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.reverse/reverse.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.reverse/reverse_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.rotate/rotate.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.rotate/rotate_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.swap/iter_swap.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.swap/swap_ranges.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.unique/unique.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.unique/unique_copy.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.unique/unique_copy_pred.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/alg.unique/unique_pred.pass.cpp create mode 100644 test/std/algorithms/alg.modifying.operations/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.adjacent.find/adjacent_find_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.all_of/all_of.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.any_of/any_of.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.count/count.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.equal/equal.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.equal/equal_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find.end/find_end_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find.first.of/find_first_of_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find/find.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.foreach/for_each_n.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.foreach/test.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.is_permutation/is_permutation_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.none_of/none_of.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.search/search.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.search/search_n.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.search/search_n_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/alg.search/search_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/mismatch/mismatch.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/mismatch/mismatch_pred.pass.cpp create mode 100644 test/std/algorithms/alg.nonmodifying/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/equal.range/equal_range_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.clamp/clamp.comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.clamp/clamp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/is_heap.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/is_heap_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/is_heap_until.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/is_heap_until_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/make.heap/make_heap_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/pop.heap/pop_heap.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/pop.heap/pop_heap_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/push.heap/push_heap.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/push.heap/push_heap_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/sort.heap/sort_heap.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.heap.operations/sort.heap/sort_heap_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.lex.comparison/lexicographical_compare_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.merge/inplace_merge.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.merge/inplace_merge_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.merge/merge.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.merge/merge_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max_element.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max_element_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max_init_list.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/max_init_list_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min_element.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min_element_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min_init_list.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/min_init_list_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax_element.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax_element_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.min.max/minmax_init_list_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.nth.element/nth_element.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.nth.element/nth_element_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.permutation.generators/next_permutation.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.permutation.generators/next_permutation_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.permutation.generators/prev_permutation.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.permutation.generators/prev_permutation_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/includes/includes.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/includes/includes_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.difference/set_difference_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.intersection/set_intersection_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/set_symmetric_difference_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.set.operations/set.union/set_union_move.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/is.sorted/is_sorted_until_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/partial.sort/partial_sort.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/partial.sort/partial_sort_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/sort/sort.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/sort/sort_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/stable.sort/stable_sort.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/alg.sort/stable.sort/stable_sort_comp.pass.cpp create mode 100644 test/std/algorithms/alg.sorting/nothing_to_do.pass.cpp create mode 100644 test/std/algorithms/algorithms.general/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.fences/atomic_signal_fence.pass.cpp create mode 100644 test/std/atomics/atomics.fences/atomic_thread_fence.pass.cpp create mode 100644 test/std/atomics/atomics.flag/atomic_flag_clear.pass.cpp create mode 100644 test/std/atomics/atomics.flag/atomic_flag_clear_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.flag/atomic_flag_test_and_set.pass.cpp create mode 100644 test/std/atomics/atomics.flag/atomic_flag_test_and_set_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.flag/clear.pass.cpp create mode 100644 test/std/atomics/atomics.flag/copy_assign.fail.cpp create mode 100644 test/std/atomics/atomics.flag/copy_ctor.fail.cpp create mode 100644 test/std/atomics/atomics.flag/copy_volatile_assign.fail.cpp create mode 100644 test/std/atomics/atomics.flag/default.pass.cpp create mode 100644 test/std/atomics/atomics.flag/init.pass.cpp create mode 100644 test/std/atomics/atomics.flag/test_and_set.pass.cpp create mode 100644 test/std/atomics/atomics.general/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.general/replace_failure_order.pass.cpp create mode 100644 test/std/atomics/atomics.lockfree/isalwayslockfree.pass.cpp create mode 100644 test/std/atomics/atomics.lockfree/lockfree.pass.cpp create mode 100644 test/std/atomics/atomics.order/kill_dependency.pass.cpp create mode 100644 test/std/atomics/atomics.order/memory_order.pass.cpp create mode 100644 test/std/atomics/atomics.syn/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/address.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/bool.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/cstdint_typedefs.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/integral.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/integral_typedefs.pass.cpp create mode 100644 test/std/atomics/atomics.types.generic/trivially_copyable.fail.cpp create mode 100644 test/std/atomics/atomics.types.generic/trivially_copyable.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.arith/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.general/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.pointer/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_strong.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_strong_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_weak.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_weak_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_exchange.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_exchange_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_add.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_add_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_and.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_and_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_or.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_or_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_sub.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_sub_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_xor.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_xor_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_init.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_is_lock_free.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_load.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_load_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_store.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_store_explicit.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_var_init.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.req/ctor.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/atomics.types.operations.templ/nothing_to_do.pass.cpp create mode 100644 test/std/atomics/atomics.types.operations/nothing_to_do.pass.cpp create mode 100644 test/std/containers/Copyable.h create mode 100644 test/std/containers/Emplaceable.h create mode 100644 test/std/containers/NotConstructible.h create mode 100644 test/std/containers/associative/iterator_types.pass.cpp create mode 100644 test/std/containers/associative/map/PR28469_undefined_behavior_segfault.sh.cpp create mode 100644 test/std/containers/associative/map/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/associative/map/compare.pass.cpp create mode 100644 test/std/containers/associative/map/incomplete_type.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/at.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/empty.fail.cpp create mode 100644 test/std/containers/associative/map/map.access/empty.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/index_key.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/index_rv_key.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/index_tuple.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/iterator.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/max_size.pass.cpp create mode 100644 test/std/containers/associative/map/map.access/size.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/compare.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/associative/map/map.cons/copy.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/copy_assign.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/default.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/default_recursive.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/initializer_list_compare.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/initializer_list_compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/iter_iter.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/iter_iter_comp.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/iter_iter_comp_alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/move.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/move_assign.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/associative/map/map.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/clear.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/emplace_hint.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/erase_iter.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/erase_key.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/extract_iterator.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/extract_key.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_and_emplace_allocator_requirements.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_cv.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_iter_cv.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_iter_rv.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_node_type.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_or_assign.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/insert_rv.pass.cpp create mode 100644 test/std/containers/associative/map/map.modifiers/try.emplace.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/count.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/count0.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/count1.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/count2.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/count3.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/count_transparent.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range0.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range1.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range2.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range3.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/equal_range_transparent.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/find.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/find0.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/find1.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/find2.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/find3.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/lower_bound.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/lower_bound0.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/lower_bound1.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/lower_bound2.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/lower_bound3.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/upper_bound.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/upper_bound0.pass.cpp create mode 100644 test/std/containers/associative/map/map.ops/upper_bound1.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/upper_bound2.fail.cpp create mode 100644 test/std/containers/associative/map/map.ops/upper_bound3.fail.cpp create mode 100644 test/std/containers/associative/map/map.special/member_swap.pass.cpp create mode 100644 test/std/containers/associative/map/map.special/non_member_swap.pass.cpp create mode 100644 test/std/containers/associative/map/map.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/associative/map/types.pass.cpp create mode 100644 test/std/containers/associative/multimap/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/associative/multimap/empty.fail.cpp create mode 100644 test/std/containers/associative/multimap/empty.pass.cpp create mode 100644 test/std/containers/associative/multimap/incomplete_type.pass.cpp create mode 100644 test/std/containers/associative/multimap/iterator.pass.cpp create mode 100644 test/std/containers/associative/multimap/max_size.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/compare.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/copy.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/copy_assign.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/default.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/initializer_list_compare.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/initializer_list_compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/iter_iter_comp.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/iter_iter_comp_alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/move.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/move_assign.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/clear.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/emplace_hint.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/erase_iter.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/erase_key.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/extract_iterator.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/extract_key.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_allocator_requirements.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_cv.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_iter_cv.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_iter_rv.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_node_type.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.modifiers/insert_rv.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count0.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count1.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count2.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count3.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/count_transparent.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range0.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range1.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range2.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range3.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/equal_range_transparent.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/find.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/find0.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/find1.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/find2.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/find3.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/lower_bound.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/lower_bound0.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/lower_bound1.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/lower_bound2.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/lower_bound3.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/upper_bound.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/upper_bound0.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/upper_bound1.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/upper_bound2.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.ops/upper_bound3.fail.cpp create mode 100644 test/std/containers/associative/multimap/multimap.special/member_swap.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.special/non_member_swap.pass.cpp create mode 100644 test/std/containers/associative/multimap/multimap.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multimap/scary.pass.cpp create mode 100644 test/std/containers/associative/multimap/size.pass.cpp create mode 100644 test/std/containers/associative/multimap/types.pass.cpp create mode 100644 test/std/containers/associative/multiset/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/associative/multiset/clear.pass.cpp create mode 100644 test/std/containers/associative/multiset/count.pass.cpp create mode 100644 test/std/containers/associative/multiset/count_transparent.pass.cpp create mode 100644 test/std/containers/associative/multiset/emplace.pass.cpp create mode 100644 test/std/containers/associative/multiset/emplace_hint.pass.cpp create mode 100644 test/std/containers/associative/multiset/empty.fail.cpp create mode 100644 test/std/containers/associative/multiset/empty.pass.cpp create mode 100644 test/std/containers/associative/multiset/equal_range.pass.cpp create mode 100644 test/std/containers/associative/multiset/equal_range_transparent.pass.cpp create mode 100644 test/std/containers/associative/multiset/erase_iter.pass.cpp create mode 100644 test/std/containers/associative/multiset/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multiset/erase_key.pass.cpp create mode 100644 test/std/containers/associative/multiset/extract_iterator.pass.cpp create mode 100644 test/std/containers/associative/multiset/extract_key.pass.cpp create mode 100644 test/std/containers/associative/multiset/find.pass.cpp create mode 100644 test/std/containers/associative/multiset/incomplete_type.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_allocator_requirements.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_cv.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_iter_cv.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_iter_rv.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_node_type.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/associative/multiset/insert_rv.pass.cpp create mode 100644 test/std/containers/associative/multiset/iterator.pass.cpp create mode 100644 test/std/containers/associative/multiset/lower_bound.pass.cpp create mode 100644 test/std/containers/associative/multiset/max_size.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/compare.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/copy.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/copy_assign.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/default.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/initializer_list_compare.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/initializer_list_compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/iter_iter.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/iter_iter_alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/iter_iter_comp.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/move.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/move_assign.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.special/member_swap.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.special/non_member_swap.pass.cpp create mode 100644 test/std/containers/associative/multiset/multiset.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/associative/multiset/scary.pass.cpp create mode 100644 test/std/containers/associative/multiset/size.pass.cpp create mode 100644 test/std/containers/associative/multiset/types.pass.cpp create mode 100644 test/std/containers/associative/multiset/upper_bound.pass.cpp create mode 100644 test/std/containers/associative/set/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/associative/set/clear.pass.cpp create mode 100644 test/std/containers/associative/set/count.pass.cpp create mode 100644 test/std/containers/associative/set/count_transparent.pass.cpp create mode 100644 test/std/containers/associative/set/emplace.pass.cpp create mode 100644 test/std/containers/associative/set/emplace_hint.pass.cpp create mode 100644 test/std/containers/associative/set/empty.fail.cpp create mode 100644 test/std/containers/associative/set/empty.pass.cpp create mode 100644 test/std/containers/associative/set/equal_range.pass.cpp create mode 100644 test/std/containers/associative/set/equal_range_transparent.pass.cpp create mode 100644 test/std/containers/associative/set/erase_iter.pass.cpp create mode 100644 test/std/containers/associative/set/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/set/erase_key.pass.cpp create mode 100644 test/std/containers/associative/set/extract_iterator.pass.cpp create mode 100644 test/std/containers/associative/set/extract_key.pass.cpp create mode 100644 test/std/containers/associative/set/find.pass.cpp create mode 100644 test/std/containers/associative/set/incomplete_type.pass.cpp create mode 100644 test/std/containers/associative/set/insert_and_emplace_allocator_requirements.pass.cpp create mode 100644 test/std/containers/associative/set/insert_cv.pass.cpp create mode 100644 test/std/containers/associative/set/insert_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/set/insert_iter_cv.pass.cpp create mode 100644 test/std/containers/associative/set/insert_iter_iter.pass.cpp create mode 100644 test/std/containers/associative/set/insert_iter_rv.pass.cpp create mode 100644 test/std/containers/associative/set/insert_node_type.pass.cpp create mode 100644 test/std/containers/associative/set/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/associative/set/insert_rv.pass.cpp create mode 100644 test/std/containers/associative/set/iterator.pass.cpp create mode 100644 test/std/containers/associative/set/lower_bound.pass.cpp create mode 100644 test/std/containers/associative/set/max_size.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/compare.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/associative/set/set.cons/copy.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/copy_assign.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/default.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/initializer_list_compare.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/initializer_list_compare_alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/iter_iter.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/iter_iter_alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/iter_iter_comp.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/move.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/move_assign.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/associative/set/set.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/associative/set/set.special/member_swap.pass.cpp create mode 100644 test/std/containers/associative/set/set.special/non_member_swap.pass.cpp create mode 100644 test/std/containers/associative/set/set.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/associative/set/size.pass.cpp create mode 100644 test/std/containers/associative/set/types.pass.cpp create mode 100644 test/std/containers/associative/set/upper_bound.pass.cpp create mode 100644 test/std/containers/container.adaptors/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_cont_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_comp_rcont_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_copy_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons.alloc/ctor_move_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/assign_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/assign_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_container.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_comp_rcontainer.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_default.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_cont.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_iter_iter_comp_rcont.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/ctor_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/deduct.fail.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/deduct.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/emplace.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/empty.fail.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/pop.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/push.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/push_rvalue.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/size.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.members/top.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.special/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/priqueue.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/types.fail.cpp create mode 100644 test/std/containers/container.adaptors/priority.queue/types.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons.alloc/ctor_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons.alloc/ctor_container_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons.alloc/ctor_queue_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons.alloc/ctor_rcontainer_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons.alloc/ctor_rqueue_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/ctor_container.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/ctor_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/ctor_default.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/ctor_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/ctor_rcontainer.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/deduct.fail.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/deduct.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/assign_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/assign_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/back.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/back_const.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/empty.fail.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/empty.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/front.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/front_const.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/pop.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/push.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/push_rv.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/size.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/types.fail.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.defn/types.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.ops/eq.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.ops/lt.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.special/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/queue/queue.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons.alloc/ctor_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons.alloc/ctor_container_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons.alloc/ctor_copy_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons.alloc/ctor_rcontainer_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons.alloc/ctor_rqueue_alloc.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/ctor_container.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/ctor_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/ctor_default.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/ctor_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/ctor_rcontainer.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/deduct.fail.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/deduct.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/assign_copy.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/assign_move.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/emplace.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/empty.fail.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/empty.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/pop.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/push.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/push_rv.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/size.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/top.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/top_const.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/types.fail.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.defn/types.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.ops/eq.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.ops/lt.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.special/swap.pass.cpp create mode 100644 test/std/containers/container.adaptors/stack/stack.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/container.node/node_handle.pass.cpp create mode 100644 test/std/containers/container.requirements/associative.reqmts/associative.reqmts.except/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/associative.reqmts/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/container.requirements.dataraces/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/container.requirements.general/allocator_move.pass.cpp create mode 100644 test/std/containers/container.requirements/container.requirements.general/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/sequence.reqmts/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/unord.req/nothing_to_do.pass.cpp create mode 100644 test/std/containers/container.requirements/unord.req/unord.req.except/nothing_to_do.pass.cpp create mode 100644 test/std/containers/containers.general/nothing_to_do.pass.cpp create mode 100644 test/std/containers/map_allocator_requirement_test_templates.h create mode 100644 test/std/containers/nothing_to_do.pass.cpp create mode 100644 test/std/containers/sequences/array/array.cons/deduct.fail.cpp create mode 100644 test/std/containers/sequences/array/array.cons/deduct.pass.cpp create mode 100644 test/std/containers/sequences/array/array.cons/default.pass.cpp create mode 100644 test/std/containers/sequences/array/array.cons/implicit_copy.pass.cpp create mode 100644 test/std/containers/sequences/array/array.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/array/array.data/data.pass.cpp create mode 100644 test/std/containers/sequences/array/array.data/data_const.pass.cpp create mode 100644 test/std/containers/sequences/array/array.fill/fill.fail.cpp create mode 100644 test/std/containers/sequences/array/array.fill/fill.pass.cpp create mode 100644 test/std/containers/sequences/array/array.size/size.pass.cpp create mode 100644 test/std/containers/sequences/array/array.special/swap.pass.cpp create mode 100644 test/std/containers/sequences/array/array.swap/swap.fail.cpp create mode 100644 test/std/containers/sequences/array/array.swap/swap.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/get.fail.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/get.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/get_const.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/get_const_rv.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/get_rv.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/tuple_element.fail.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/tuple_element.pass.cpp create mode 100644 test/std/containers/sequences/array/array.tuple/tuple_size.pass.cpp create mode 100644 test/std/containers/sequences/array/array.zero/tested_elsewhere.pass.cpp create mode 100644 test/std/containers/sequences/array/at.pass.cpp create mode 100644 test/std/containers/sequences/array/begin.pass.cpp create mode 100644 test/std/containers/sequences/array/compare.fail.cpp create mode 100644 test/std/containers/sequences/array/compare.pass.cpp create mode 100644 test/std/containers/sequences/array/contiguous.pass.cpp create mode 100644 test/std/containers/sequences/array/empty.fail.cpp create mode 100644 test/std/containers/sequences/array/empty.pass.cpp create mode 100644 test/std/containers/sequences/array/front_back.pass.cpp create mode 100644 test/std/containers/sequences/array/indexing.pass.cpp create mode 100644 test/std/containers/sequences/array/iterators.pass.cpp create mode 100644 test/std/containers/sequences/array/max_size.pass.cpp create mode 100644 test/std/containers/sequences/array/size_and_alignment.pass.cpp create mode 100644 test/std/containers/sequences/array/types.pass.cpp create mode 100644 test/std/containers/sequences/deque/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/access.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/empty.fail.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/empty.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/max_size.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/resize_size.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/resize_size_value.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/shrink_to_fit.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.capacity/size.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/assign_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/assign_size_value.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/copy.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/deduct.fail.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/deduct.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/default.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/initializer_list_alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/iter_iter_alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/move.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/move_assign.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/op_equal.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/op_equal_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/size.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/size_value.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.cons/size_value_alloc.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/emplace_back.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/emplace_front.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/erase_iter.invalidation.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/erase_iter.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/erase_iter_iter.invalidation.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/insert_iter_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/insert_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/insert_size_value.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/insert_value.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/pop_back.invalidation.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/pop_back.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/pop_front.invalidation.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/pop_front.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_back.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_back_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_back_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_front.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_front_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.modifiers/push_front_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/copy.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/copy_backward.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/move.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/move_backward.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/swap.pass.cpp create mode 100644 test/std/containers/sequences/deque/deque.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/deque/iterators.pass.cpp create mode 100644 test/std/containers/sequences/deque/types.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/sequences/forwardlist/empty.fail.cpp create mode 100644 test/std/containers/sequences/forwardlist/empty.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.access/front.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/alloc.fail.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_copy.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_init.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_move.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_op_init.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_range.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/assign_size_value.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/copy.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.fail.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/deduct.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/default.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/default_recursive.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/init.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/init_alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/move.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/range.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/range_alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/size.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/size_value.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.cons/size_value_alloc.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.iter/before_begin.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.iter/iterators.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/clear.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_after.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/emplace_front.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_many.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/erase_after_one.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_const.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_init.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_range.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_rv.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/insert_after_size_value.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/pop_front.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_const.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/push_front_rv.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.modifiers/resize_size_value.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/merge.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/merge_pred.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/remove.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/remove_if.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/reverse.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/sort.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/sort_pred.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_flist.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_one.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/splice_after_range.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/unique.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.ops/unique_pred.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.spec/equal.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.spec/member_swap.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.spec/non_member_swap.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.spec/relational.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/forwardlist.spec/swap_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/incomplete.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/max_size.pass.cpp create mode 100644 test/std/containers/sequences/forwardlist/types.pass.cpp create mode 100644 test/std/containers/sequences/list/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/sequences/list/incomplete_type.pass.cpp create mode 100644 test/std/containers/sequences/list/iterators.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/empty.fail.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/empty.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/max_size.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/resize_size.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/resize_size_value.pass.cpp create mode 100644 test/std/containers/sequences/list/list.capacity/size.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/assign_copy.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/assign_move.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/copy.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/deduct.fail.cpp create mode 100644 test/std/containers/sequences/list/list.cons/deduct.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/default.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/default_stack_alloc.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/initializer_list_alloc.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/input_iterator.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/move.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/op_equal_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/size_type.pass.cpp create mode 100644 test/std/containers/sequences/list/list.cons/size_value_alloc.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/clear.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/emplace_back.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/emplace_front.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/erase_iter.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/insert_iter_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/insert_iter_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/insert_iter_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/insert_iter_size_value.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/insert_iter_value.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/pop_back.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/pop_front.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_back.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_back_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_back_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_front.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_front_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/list/list.modifiers/push_front_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/merge.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/merge_comp.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/remove.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/remove_if.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/reverse.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/sort.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/sort_comp.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/splice_pos_list.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/splice_pos_list_iter.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/splice_pos_list_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/unique.pass.cpp create mode 100644 test/std/containers/sequences/list/list.ops/unique_pred.pass.cpp create mode 100644 test/std/containers/sequences/list/list.special/swap.pass.cpp create mode 100644 test/std/containers/sequences/list/list.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/list/types.pass.cpp create mode 100644 test/std/containers/sequences/nothing_to_do.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/assign_copy.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/assign_move.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/capacity.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_default.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_iter_iter_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_size.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/construct_size_value_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/copy.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/copy_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/default_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/emplace.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/emplace_back.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/empty.fail.cpp create mode 100644 test/std/containers/sequences/vector.bool/empty.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/enabled_hash.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/erase_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/find.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/initializer_list_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/insert_iter_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/insert_iter_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/insert_iter_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/insert_iter_value.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/iterators.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/move.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/move_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/move_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/op_equal_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/push_back.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/reference.swap.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/reserve.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/resize_size.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/resize_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/shrink_to_fit.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/size.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/swap.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/swap_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/types.pass.cpp create mode 100644 test/std/containers/sequences/vector.bool/vector_bool.pass.cpp create mode 100644 test/std/containers/sequences/vector/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/sequences/vector/contiguous.pass.cpp create mode 100644 test/std/containers/sequences/vector/iterators.pass.cpp create mode 100644 test/std/containers/sequences/vector/types.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/capacity.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/empty.fail.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/empty.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/max_size.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/reserve.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/resize_size.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/resize_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/shrink_to_fit.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/size.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.capacity/swap.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/assign_copy.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/assign_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/assign_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/assign_move.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/assign_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_default.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_iter_iter_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_size.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/construct_size_value_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/copy.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/copy_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/deduct.fail.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/deduct.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/default.recursive.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/default_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/initializer_list_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/move.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/move_alloc.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/move_noexcept.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.cons/op_equal_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.data/data.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.data/data_const.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/clear.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/emplace_back.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/emplace_extra.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/erase_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/erase_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/insert_iter_initializer_list.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/insert_iter_iter_iter.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/insert_iter_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/insert_iter_size_value.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/insert_iter_value.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/pop_back.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/push_back.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/push_back_exception_safety.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.modifiers/push_back_rvalue.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.special/swap.pass.cpp create mode 100644 test/std/containers/sequences/vector/vector.special/swap_noexcept.pass.cpp create mode 100644 test/std/containers/set_allocator_requirement_test_templates.h create mode 100644 test/std/containers/test_compare.h create mode 100644 test/std/containers/test_hash.h create mode 100644 test/std/containers/unord/iterator_difference_type.pass.cpp create mode 100644 test/std/containers/unord/unord.map/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/unord/unord.map/bucket.pass.cpp create mode 100644 test/std/containers/unord/unord.map/bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.map/bucket_size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/compare.pass.cpp create mode 100644 test/std/containers/unord/unord.map/count.pass.cpp create mode 100644 test/std/containers/unord/unord.map/empty.fail.cpp create mode 100644 test/std/containers/unord/unord.map/empty.pass.cpp create mode 100644 test/std/containers/unord/unord.map/eq.pass.cpp create mode 100644 test/std/containers/unord/unord.map/equal_range_const.pass.cpp create mode 100644 test/std/containers/unord/unord.map/equal_range_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.map/find_const.pass.cpp create mode 100644 test/std/containers/unord/unord.map/find_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.map/incomplete_type.pass.cpp create mode 100644 test/std/containers/unord/unord.map/iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.map/load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.map/local_iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.map/max_bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.map/max_load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.map/max_size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/rehash.pass.cpp create mode 100644 test/std/containers/unord/unord.map/reserve.pass.cpp create mode 100644 test/std/containers/unord/unord.map/size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/swap_member.pass.cpp create mode 100644 test/std/containers/unord/unord.map/types.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/assign_copy.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/assign_init.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/assign_move.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/copy.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/copy_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/default.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/default_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/hash_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/init.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/init_size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/init_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/init_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/init_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/move.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/move_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/move_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/range.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/range_size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/range_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/range_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/size.fail.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/size.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.cnstr/size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.elem/at.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.elem/index.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.elem/index_tuple.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/clear.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/emplace_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_const_iter.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_iter_db3.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_iter_iter_db4.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_key.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/erase_range.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/extract_iterator.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/extract_key.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_and_emplace_allocator_requirements.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_hint_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_hint_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_init.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_node_type.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_or_assign.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_range.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/insert_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.modifiers/try.emplace.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.swap/db_swap_1.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.swap/swap_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.map/unord.map.swap/swap_non_member.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/bucket.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/bucket_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/count.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/db_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/db_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/db_local_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/db_local_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/empty.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/empty.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/eq.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/equal_range_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/equal_range_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/find_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/find_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/incomplete.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/local_iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/local_iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/max_bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/max_load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/max_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/rehash.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/reserve.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/scary.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/swap_member.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/types.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/assign_copy.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/assign_init.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/assign_move.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/copy.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/copy_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/default.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/default_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/hash_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/init.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/init_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/init_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/init_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/init_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/move.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/move_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/move_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/range.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/range_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/range_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/size.fail.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/size.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.cnstr/size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/clear.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/emplace_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_const_iter.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_iter_db3.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_iter_iter_db4.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_key.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/erase_range.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/extract_iterator.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/extract_key.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_allocator_requirements.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_hint_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_hint_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_init.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_node_type.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_range.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.modifiers/insert_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.swap/db_swap_1.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.swap/swap_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multimap/unord.multimap.swap/swap_non_member.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/bucket.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/bucket_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/clear.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/count.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/db_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/db_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/db_local_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/db_local_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/emplace.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/emplace_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/empty.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/empty.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/eq.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/equal_range_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/equal_range_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_const_iter.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_iter_db3.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_iter_iter_db4.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_key.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/erase_range.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/extract_iterator.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/extract_key.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/find_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/find_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/incomplete.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_allocator_requirements.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_hint_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_hint_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_init.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_node_type.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_range.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/insert_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/local_iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/local_iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/max_bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/max_load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/max_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/rehash.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/reserve.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/scary.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/swap_member.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/types.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/assign_copy.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/assign_init.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/assign_move.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/copy.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/copy_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/default.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/default_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/hash_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/move.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/move_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/move_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/range.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/range_size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/range_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/size.fail.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/size.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.cnstr/size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.swap/db_swap_1.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.swap/swap_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.multiset/unord.multiset.swap/swap_non_member.pass.cpp create mode 100644 test/std/containers/unord/unord.set/allocator_mismatch.fail.cpp create mode 100644 test/std/containers/unord/unord.set/bucket.pass.cpp create mode 100644 test/std/containers/unord/unord.set/bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.set/bucket_size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/clear.pass.cpp create mode 100644 test/std/containers/unord/unord.set/count.pass.cpp create mode 100644 test/std/containers/unord/unord.set/db_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.set/db_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.set/db_local_iterators_7.pass.cpp create mode 100644 test/std/containers/unord/unord.set/db_local_iterators_8.pass.cpp create mode 100644 test/std/containers/unord/unord.set/emplace.pass.cpp create mode 100644 test/std/containers/unord/unord.set/emplace_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.set/empty.fail.cpp create mode 100644 test/std/containers/unord/unord.set/empty.pass.cpp create mode 100644 test/std/containers/unord/unord.set/eq.pass.cpp create mode 100644 test/std/containers/unord/unord.set/equal_range_const.pass.cpp create mode 100644 test/std/containers/unord/unord.set/equal_range_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_const_iter.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_iter_db1.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_iter_db2.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_iter_db3.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_iter_iter_db4.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_key.pass.cpp create mode 100644 test/std/containers/unord/unord.set/erase_range.pass.cpp create mode 100644 test/std/containers/unord/unord.set/extract_iterator.pass.cpp create mode 100644 test/std/containers/unord/unord.set/extract_key.pass.cpp create mode 100644 test/std/containers/unord/unord.set/find_const.pass.cpp create mode 100644 test/std/containers/unord/unord.set/find_non_const.pass.cpp create mode 100644 test/std/containers/unord/unord.set/incomplete.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_and_emplace_allocator_requirements.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_hint_const_lvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_hint_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_init.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_node_type.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_node_type_hint.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_range.pass.cpp create mode 100644 test/std/containers/unord/unord.set/insert_rvalue.pass.cpp create mode 100644 test/std/containers/unord/unord.set/iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.set/iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.set/load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.set/local_iterators.fail.cpp create mode 100644 test/std/containers/unord/unord.set/local_iterators.pass.cpp create mode 100644 test/std/containers/unord/unord.set/max_bucket_count.pass.cpp create mode 100644 test/std/containers/unord/unord.set/max_load_factor.pass.cpp create mode 100644 test/std/containers/unord/unord.set/max_size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/rehash.pass.cpp create mode 100644 test/std/containers/unord/unord.set/reserve.pass.cpp create mode 100644 test/std/containers/unord/unord.set/size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/swap_member.pass.cpp create mode 100644 test/std/containers/unord/unord.set/types.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/assign_copy.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/assign_init.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/assign_move.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/compare_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/copy.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/copy_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/default.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/default_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/dtor_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/hash_copy_constructible.fail.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/init.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/init_size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/init_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/init_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/init_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/move.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/move_alloc.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/move_assign_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/move_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/range.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/range_size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/range_size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/range_size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/size.fail.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/size.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/size_hash.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/size_hash_equal.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.cnstr/size_hash_equal_allocator.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.swap/db_swap_1.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.swap/swap_noexcept.pass.cpp create mode 100644 test/std/containers/unord/unord.set/unord.set.swap/swap_non_member.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.eq.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.ge.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.gt.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.le.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.lt.pass.cpp create mode 100644 test/std/containers/views/span.comparison/op.ne.pass.cpp create mode 100644 test/std/containers/views/span.cons/array.fail.cpp create mode 100644 test/std/containers/views/span.cons/array.pass.cpp create mode 100644 test/std/containers/views/span.cons/assign.pass.cpp create mode 100644 test/std/containers/views/span.cons/container.fail.cpp create mode 100644 test/std/containers/views/span.cons/container.pass.cpp create mode 100644 test/std/containers/views/span.cons/copy.pass.cpp create mode 100644 test/std/containers/views/span.cons/deduct.pass.cpp create mode 100644 test/std/containers/views/span.cons/default.fail.cpp create mode 100644 test/std/containers/views/span.cons/default.pass.cpp create mode 100644 test/std/containers/views/span.cons/ptr_len.fail.cpp create mode 100644 test/std/containers/views/span.cons/ptr_len.pass.cpp create mode 100644 test/std/containers/views/span.cons/ptr_ptr.fail.cpp create mode 100644 test/std/containers/views/span.cons/ptr_ptr.pass.cpp create mode 100644 test/std/containers/views/span.cons/span.fail.cpp create mode 100644 test/std/containers/views/span.cons/span.pass.cpp create mode 100644 test/std/containers/views/span.cons/stdarray.pass.cpp create mode 100644 test/std/containers/views/span.elem/data.pass.cpp create mode 100644 test/std/containers/views/span.elem/op_idx.pass.cpp create mode 100644 test/std/containers/views/span.iterators/begin.pass.cpp create mode 100644 test/std/containers/views/span.iterators/end.pass.cpp create mode 100644 test/std/containers/views/span.iterators/rbegin.pass.cpp create mode 100644 test/std/containers/views/span.iterators/rend.pass.cpp create mode 100644 test/std/containers/views/span.objectrep/as_bytes.pass.cpp create mode 100644 test/std/containers/views/span.objectrep/as_writeable_bytes.fail.cpp create mode 100644 test/std/containers/views/span.objectrep/as_writeable_bytes.pass.cpp create mode 100644 test/std/containers/views/span.obs/empty.pass.cpp create mode 100644 test/std/containers/views/span.obs/size.pass.cpp create mode 100644 test/std/containers/views/span.obs/size_bytes.pass.cpp create mode 100644 test/std/containers/views/span.sub/first.pass.cpp create mode 100644 test/std/containers/views/span.sub/last.pass.cpp create mode 100644 test/std/containers/views/span.sub/subspan.pass.cpp create mode 100644 test/std/containers/views/types.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/A.h create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/AB.h create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/assignment.fail.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/assignment.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/convert.fail.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/convert.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/convert_assignment.fail.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/convert_assignment.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/copy.fail.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/copy.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/explicit.fail.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/pointer.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/assign_from_auto_ptr_ref.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_from_auto_ptr_ref.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_to_auto_ptr.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_to_auto_ptr_ref.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/arrow.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/deref.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/release.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/reset.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/auto.ptr/element_type.pass.cpp create mode 100644 test/std/depr/depr.auto.ptr/nothing_to_do.pass.cpp create mode 100644 test/std/depr/depr.c.headers/assert_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/ciso646.pass.cpp create mode 100644 test/std/depr/depr.c.headers/complex.h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/ctype_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/errno_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/fenv_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/float_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/inttypes_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/iso646_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/limits_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/locale_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/math_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/setjmp_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/signal_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stdarg_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stdbool_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stddef_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stdint_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stdio_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/stdlib_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/string_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/tgmath_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/time_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/uchar_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/wchar_h.pass.cpp create mode 100644 test/std/depr/depr.c.headers/wctype_h.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/pointer_to_binary_function.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/pointer_to_binary_function.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/pointer_to_unary_function.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/pointer_to_unary_function.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/ptr_fun1.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/ptr_fun1.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/ptr_fun2.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/ptr_fun2.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_ref_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_ref_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref1.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref1.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_ref_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_ref_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref1.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref1.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_t.cxx1z.fail.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_t.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.adaptors/nothing_to_do.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.base/binary_function.pass.cpp create mode 100644 test/std/depr/depr.function.objects/depr.base/unary_function.pass.cpp create mode 100644 test/std/depr/depr.function.objects/nothing_to_do.pass.cpp create mode 100644 test/std/depr/depr.ios.members/io_state.pass.cpp create mode 100644 test/std/depr/depr.ios.members/open_mode.pass.cpp create mode 100644 test/std/depr/depr.ios.members/seek_dir.pass.cpp create mode 100644 test/std/depr/depr.ios.members/streamoff.pass.cpp create mode 100644 test/std/depr/depr.ios.members/streampos.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/depr.lib.bind.1st/bind1st.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/depr.lib.bind.2nd/bind2nd.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/depr.lib.binder.1st/binder1st.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/depr.lib.binder.2nd/binder2nd.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/nothing_to_do.pass.cpp create mode 100644 test/std/depr/depr.lib.binders/test_func.h create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/ccp.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/ccp_size.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/cp.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.cons/cp_size.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/rdbuf.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/str.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.istrstream/types.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/cp_size_mode.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/default.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/freeze.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/pcount.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/rdbuf.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/str.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.ostrstream/types.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.cons/cp_size_mode.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.cons/default.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/rdbuf.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/freeze.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/pcount.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/str.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstream/types.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ccp_size.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/cp_size_cp.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/cscp_size.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/cucp_size.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/default.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/scp_size_scp.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ucp_size_ucp.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/freeze.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/overflow.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/pcount.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/str.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/overflow.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/pbackfail.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/seekoff.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/seekpos.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/setbuf.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/underflow.pass.cpp create mode 100644 test/std/depr/depr.str.strstreams/depr.strstreambuf/types.pass.cpp create mode 100644 test/std/depr/exception.unexpected/nothing_to_do.pass.cpp create mode 100644 test/std/depr/exception.unexpected/set.unexpected/get_unexpected.pass.cpp create mode 100644 test/std/depr/exception.unexpected/set.unexpected/set_unexpected.pass.cpp create mode 100644 test/std/depr/exception.unexpected/unexpected.handler/unexpected_handler.pass.cpp create mode 100644 test/std/depr/exception.unexpected/unexpected/unexpected.pass.cpp create mode 100644 test/std/depr/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/assertions/cassert.pass.cpp create mode 100644 test/std/diagnostics/diagnostics.general/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/errno/cerrno.pass.cpp create mode 100644 test/std/diagnostics/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/domain.error/domain_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/invalid.argument/invalid_argument.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/length.error/length_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/logic.error/logic_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/out.of.range/out_of_range.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/overflow.error/overflow_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/range.error/range_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/runtime.error/runtime_error.pass.cpp create mode 100644 test/std/diagnostics/std.exceptions/underflow.error/underflow_error.pass.cpp create mode 100644 test/std/diagnostics/syserr/errc.pass.cpp create mode 100644 test/std/diagnostics/syserr/is_error_code_enum.pass.cpp create mode 100644 test/std/diagnostics/syserr/is_error_condition_enum.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.compare/eq_error_code_error_code.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.derived/message.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/default_ctor.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/eq.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/lt.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/neq.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/generic_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/system_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.overview/error_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/default_error_condition.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/equivalent_error_code_int.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/equivalent_int_error_condition.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ErrorCodeEnum.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/default.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/int_error_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/ErrorCodeEnum.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/assign.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/clear.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/lt.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/make_error_code.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/stream_inserter.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/bool.fail.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/bool.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/default_error_condition.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/message.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/value.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.overview/types.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/ErrorConditionEnum.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/default.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/int_error_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/ErrorConditionEnum.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/assign.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/clear.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/lt.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/make_error_condition.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/bool.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/message.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/value.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.overview/types.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.hash/enabled_hash.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.hash/error_code.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.hash/error_condition.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/nothing_to_do.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_error_code.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_error_code_const_char_pointer.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_error_code_string.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_int_error_category.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_int_error_category_const_char_pointer.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/ctor_int_error_category_string.pass.cpp create mode 100644 test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.overview/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/algorithms/alg.search/search.pass.cpp create mode 100644 test/std/experimental/filesystem/fs.req.macros/feature_macro.pass.cpp create mode 100644 test/std/experimental/filesystem/fs.req.namespace/namespace.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore/default.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore/hash.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore/hash.pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore/pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore_horspool/default.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore_horspool/hash.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore_horspool/hash.pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.boyer_moore_horspool/pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.default/default.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.default/default.pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.default/func.searchers.default.creation/make_default_searcher.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/func.searchers.default/func.searchers.default.creation/make_default_searcher.pred.pass.cpp create mode 100644 test/std/experimental/func/func.searchers/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/func/header.functional.synop/includes.pass.cpp create mode 100644 test/std/experimental/func/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/iterator/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.cons/ostream_joiner.cons.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.creation/make_ostream_joiner.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/ostream_joiner.op.assign.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/ostream_joiner.op.postincrement.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/ostream_joiner.op.pretincrement.pass.cpp create mode 100644 test/std/experimental/iterator/ostream.joiner/ostream.joiner.ops/ostream_joiner.op.star.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/operator_bool.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/equal_comp.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/less_comp.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/done.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/assign.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/construct.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/address.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/from_address.fail.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/from_address.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.hash/hash.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.noop/noop_coroutine.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.prom/promise.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.resumption/destroy.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.resumption/resume.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.handle/void_handle.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.traits/promise_type.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.trivial.awaitables/suspend_always.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/coroutine.trivial.awaitables/suspend_never.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/await_result.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/bool_await_suspend.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/expected.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/fullexpr-dtor.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/generator.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/go.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/multishot_func.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/end.to.end/oneshot_func.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/includes.pass.cpp create mode 100644 test/std/experimental/language.support/support.coroutines/lit.local.cfg create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/assign.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/copy.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/default.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/memory_resource_convert.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.ctor/other_alloc.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/equal.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.eq/not_equal.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/allocate.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_const_lvalue_pair.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_rvalue.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_pair_values.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_piecewise_pair_evil.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/construct_types.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/deallocate.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/destroy.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/resource.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/select_on_container_copy_construction.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.overview/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/memory/memory.polymorphic.allocator.class/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_copy.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/alloc_move.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/default.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_allocate_and_deallocate.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/do_is_equal.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.overview/overview.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_deque_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_forward_list_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_list_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_map_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_regex_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_set_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_string_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_unordered_map_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.aliases/header_vector_synop.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.global/default_resource.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.global/new_delete_resource.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.global/null_memory_resource.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource.synop/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/construct.fail.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.eq/equal.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.eq/not_equal.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.overview/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.priv/protected_members.fail.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.public/allocate.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.public/deallocate.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.public/dtor.pass.cpp create mode 100644 test/std/experimental/memory/memory.resource/memory.resource.public/is_equal.pass.cpp create mode 100644 test/std/experimental/memory/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/simd/simd.abi/vector_extension.pass.cpp create mode 100644 test/std/experimental/simd/simd.access/default.pass.cpp create mode 100644 test/std/experimental/simd/simd.casts/simd_cast.pass.cpp create mode 100644 test/std/experimental/simd/simd.casts/static_simd_cast.pass.cpp create mode 100644 test/std/experimental/simd/simd.cons/broadcast.pass.cpp create mode 100644 test/std/experimental/simd/simd.cons/default.pass.cpp create mode 100644 test/std/experimental/simd/simd.cons/generator.pass.cpp create mode 100644 test/std/experimental/simd/simd.cons/load.pass.cpp create mode 100644 test/std/experimental/simd/simd.mem/load.pass.cpp create mode 100644 test/std/experimental/simd/simd.mem/store.pass.cpp create mode 100644 test/std/experimental/simd/simd.traits/abi_for_size.pass.cpp create mode 100644 test/std/experimental/simd/simd.traits/is_abi_tag.pass.cpp create mode 100644 test/std/experimental/simd/simd.traits/is_simd.pass.cpp create mode 100644 test/std/experimental/simd/simd.traits/is_simd_flag_type.pass.cpp create mode 100644 test/std/experimental/simd/simd.traits/is_simd_mask.pass.cpp create mode 100644 test/std/experimental/utilities/meta/meta.detect/detected_or.pass.cpp create mode 100644 test/std/experimental/utilities/meta/meta.detect/detected_t.pass.cpp create mode 100644 test/std/experimental/utilities/meta/meta.detect/is_detected.pass.cpp create mode 100644 test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp create mode 100644 test/std/experimental/utilities/meta/meta.detect/is_detected_exact.pass.cpp create mode 100644 test/std/experimental/utilities/nothing_to_do.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/assign.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/assign_convertible_element_type.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/assign_convertible_propagate_const.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/assign_element_type.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/move_assign.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/move_assign_convertible.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.assignment/move_assign_convertible_propagate_const.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/convertible_element_type.explicit.ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/convertible_element_type.non-explicit.ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/convertible_propagate_const.copy_ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/convertible_propagate_const.explicit.move_ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/convertible_propagate_const.move_ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/copy_ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/element_type.explicit.ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/element_type.non-explicit.ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.ctors/move_ctor.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.non-const_observers/dereference.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.non-const_observers/explicit_operator_element_type_ptr.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.non-const_observers/get.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.non-const_observers/op_arrow.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.non-const_observers/operator_element_type_ptr.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.observers/dereference.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.observers/explicit_operator_element_type_ptr.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.observers/get.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.observers/op_arrow.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/propagate_const.observers/operator_element_type_ptr.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.class/swap.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/hash.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/equal_to.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/greater.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/greater_equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/less.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/less_equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/not_equal_to.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/greater_equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/greater_than.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/less_equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/less_than.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/not_equal.pass.cpp create mode 100644 test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/swap.pass.cpp create mode 100644 test/std/experimental/utilities/utility/utility.erased.type/erased_type.pass.cpp create mode 100644 test/std/experimental/utilities/utility/utility.synop/includes.pass.cpp create mode 100644 test/std/input.output/file.streams/c.files/cinttypes.pass.cpp create mode 100644 test/std/input.output/file.streams/c.files/cstdio.pass.cpp create mode 100644 test/std/input.output/file.streams/c.files/gets.fail.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.cons/default.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.cons/move.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.members/open_path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.members/open_pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/overflow.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/pbackfail.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/seekoff.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/underflow.dat create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/underflow.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/filebuf.virtuals/underflow_utf8.dat create mode 100644 test/std/input.output/file.streams/fstreams/filebuf/types.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.cons/default.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.cons/move.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.cons/path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.cons/pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.cons/string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.members/close.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.members/open_path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.members/open_pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.members/open_string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream.members/rdbuf.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/fstream/types.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.assign/test.dat create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.assign/test2.dat create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/default.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/move.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.cons/test.dat create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/close.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/open_path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/open_pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/open_string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/rdbuf.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ifstream.members/test.dat create mode 100644 test/std/input.output/file.streams/fstreams/ifstream/types.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/lit.local.cfg create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.cons/default.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.cons/move.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.cons/path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.cons/pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.cons/string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.members/close.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.members/open_path.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.members/open_pointer.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.members/open_string.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream.members/rdbuf.pass.cpp create mode 100644 test/std/input.output/file.streams/fstreams/ofstream/types.pass.cpp create mode 100644 test/std/input.output/file.streams/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/dir1/dir2/afile3 create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/dir1/dir2/dir3/file5 create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/dir1/dir2/file4 create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/dir1/file1 create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/dir1/file2 create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/empty_file create mode 100644 test/std/input.output/filesystems/Inputs/static_test_env/non_empty_file create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/copy_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/default_const.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/move_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.cons/path.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/refresh.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.mods/replace_filename.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_size.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/file_type_obs.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/hard_link_count.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/last_write_time.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/path.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/status.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/symlink_status.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/copy_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/ctor.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/default_ctor.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/increment.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.members/move_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/directory_iterator.nonmembers/begin_end.pass.cpp create mode 100644 test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp create mode 100644 test/std/input.output/filesystems/class.file_status/file_status.cons.pass.cpp create mode 100644 test/std/input.output/filesystems/class.file_status/file_status.mods.pass.cpp create mode 100644 test/std/input.output/filesystems/class.file_status/file_status.obs.pass.cpp create mode 100644 test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.itr/iterator.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.append.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.assign/braced_init.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.assign/source.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.compare.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.concat.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.construct/default.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.construct/source.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.decompose/empty.fail.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.decompose/path.decompose.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_relative_and_proximate.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.generic.obs/generic_string_alloc.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.generic.obs/named_overloads.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/clear.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/make_preferred.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/remove_filename.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_extension.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/replace_filename.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.modifiers/swap.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.native.obs/c_str.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.native.obs/named_overloads.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.native.obs/native.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.native.obs/operator_string.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.native.obs/string_alloc.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.member/path.query/tested_in_path_decompose.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/append_op.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/comparison_ops_tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/hash_value_tested_elswhere.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/path.factory.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/path.io.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/path.io.unicode_bug.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/path.nonmember/swap.pass.cpp create mode 100644 test/std/input.output/filesystems/class.path/synop.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/copy_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/ctor.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/depth.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/disable_recursion_pending.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/increment.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/move_assign.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/pop.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.members/recursion_pending.pass.cpp create mode 100644 test/std/input.output/filesystems/class.rec.dir.itr/rec.dir.itr.nonmembers/begin_end.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/check_bitmask_types.hpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.copy_options.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.directory_options.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.file_type.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.path.format.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.perm_options.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.enum/enum.perms.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.error.report/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.filesystem.synopsis/file_time_type.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.absolute/absolute.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.canonical/canonical.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.copy/copy.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/copy_file_large.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_symlink/copy_symlink.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directories/create_directories.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory/create_directory_with_attributes.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_directory_symlink/create_directory_symlink.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_hard_link/create_hard_link.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.create_symlink/create_symlink.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.current_path/current_path.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/equivalent.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.exists/exists.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.file_size/file_size.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.hard_lk_ct/hard_link_count.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_block_file/is_block_file.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_char_file/is_character_file.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_directory/is_directory.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_empty/is_empty.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_fifo/is_fifo.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_other/is_other.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_regular_file/is_regular_file.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_socket/is_socket.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.is_symlink/is_symlink.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/last_write_time.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.permissions/permissions.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.proximate/proximate.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.read_symlink/read_symlink.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.remove/remove.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.remove_all/remove_all.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.rename/rename.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.resize_file/resize_file.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.space/space.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.status/status.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.status_known/status_known.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.symlink_status/symlink_status.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.temp_dir_path/temp_directory_path.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.req.macros/feature_macro.pass.cpp create mode 100644 test/std/input.output/filesystems/fs.req.namespace/namespace.fail.cpp create mode 100644 test/std/input.output/filesystems/fs.req.namespace/namespace.pass.cpp create mode 100644 test/std/input.output/filesystems/lit.local.cfg create mode 100644 test/std/input.output/input.output.general/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostream.format/ext.manip/get_money.pass.cpp create mode 100644 test/std/input.output/iostream.format/ext.manip/get_time.pass.cpp create mode 100644 test/std/input.output/iostream.format/ext.manip/put_money.pass.cpp create mode 100644 test/std/input.output/iostream.format/ext.manip/put_time.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/move.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/iostream.dest/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/iostreamclass/types.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/bool.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/double.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/float.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/int.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/long.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/long_double.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/long_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/short.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_int.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_long_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_short.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.reqmts/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/basic_ios.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/chart.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/ios_base.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/istream.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/signed_char.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/signed_char_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/unsigned_char_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/wchar_t_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.formatted/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.manip/ws.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.rvalue/rvalue.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get_chart.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get_pointer_size.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get_pointer_size_chart.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get_streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/get_streambuf_chart.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/getline_pointer_size.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/getline_pointer_size_chart.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/ignore.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/ignore_0xff.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/peek.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/putback.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/read.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/readsome.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/seekg.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/seekg_off.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/sync.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/tellg.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream.unformatted/unget.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream.cons/copy.fail.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream.cons/move.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream.cons/streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/istream_sentry/ctor.pass.cpp create mode 100644 test/std/input.output/iostream.format/input.streams/istream/types.pass.cpp create mode 100644 test/std/input.output/iostream.format/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.assign/move_assign.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.cons/move.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.cons/streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.formatted.reqmts/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/double.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/float.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minmax_showbase.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/minus1.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long_long.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/CharT_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/char_to_wide_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/signed_char_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/unsigned_char_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/basic_ios.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ios_base.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ostream.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/streambuf.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.manip/endl.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.manip/ends.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.manip/flush.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.rvalue/CharT_pointer.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.seeks/seekp.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.seeks/seekp2.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.seeks/tellp.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.unformatted/flush.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.unformatted/put.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream.unformatted/write.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream/types.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream_sentry/construct.pass.cpp create mode 100644 test/std/input.output/iostream.format/output.streams/ostream_sentry/destruct.pass.cpp create mode 100644 test/std/input.output/iostream.format/quoted.manip/quoted.pass.cpp create mode 100644 test/std/input.output/iostream.format/quoted.manip/quoted_char.fail.cpp create mode 100644 test/std/input.output/iostream.format/quoted.manip/quoted_traits.fail.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/resetiosflags.pass.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/setbase.pass.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/setfill.pass.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/setiosflags.pass.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/setprecision.pass.cpp create mode 100644 test/std/input.output/iostream.format/std.manip/setw.pass.cpp create mode 100644 test/std/input.output/iostream.forward/iosfwd.pass.cpp create mode 100644 test/std/input.output/iostream.objects/narrow.stream.objects/cerr.pass.cpp create mode 100644 test/std/input.output/iostream.objects/narrow.stream.objects/cin.pass.cpp create mode 100644 test/std/input.output/iostream.objects/narrow.stream.objects/clog.pass.cpp create mode 100644 test/std/input.output/iostream.objects/narrow.stream.objects/cout.pass.cpp create mode 100644 test/std/input.output/iostream.objects/wide.stream.objects/wcerr.pass.cpp create mode 100644 test/std/input.output/iostream.objects/wide.stream.objects/wcin.pass.cpp create mode 100644 test/std/input.output/iostream.objects/wide.stream.objects/wclog.pass.cpp create mode 100644 test/std/input.output/iostream.objects/wide.stream.objects/wcout.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.members/state.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/addition.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/ctor_int.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/difference.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/eq_int.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/offset.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/streamsize.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/fpos.operations/subtraction.pass.cpp create mode 100644 test/std/input.output/iostreams.base/fpos/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/flags.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/flags_fmtflags.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/precision.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/precision_streamsize.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/setf_fmtflags.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/setf_fmtflags_mask.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/unsetf_mask.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/width.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/fmtflags.state/width_streamsize.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.callback/register_callback.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.cons/dtor.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.locales/getloc.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.locales/imbue.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.storage/iword.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.storage/pword.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.base.storage/xalloc.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.members.static/sync_with_stdio.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_Init/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_failure/ctor_char_pointer_error_code.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_failure/ctor_string_error_code.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/fmtflags.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_iostate/iostate.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_openmode/openmode.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/ios_seekdir/seekdir.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/ios.types/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios.base/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.cons/ctor_streambuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/copyfmt.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/fill.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/fill_char_type.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/imbue.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/narrow.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/rdbuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/rdbuf_streambuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/set_rdbuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/tie.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/tie_ostream.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/basic.ios.members/widen.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/bad.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/bool.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/clear.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/eof.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/exceptions.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/exceptions_iostate.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/fail.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/good.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/not.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/rdstate.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/iostate.flags/setstate.pass.cpp create mode 100644 test/std/input.output/iostreams.base/ios/types.pass.cpp create mode 100644 test/std/input.output/iostreams.base/is_error_code_enum_io_errc.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/adjustfield.manip/internal.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/adjustfield.manip/left.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/adjustfield.manip/right.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/basefield.manip/dec.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/basefield.manip/hex.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/basefield.manip/oct.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/error.reporting/iostream_category.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/error.reporting/make_error_code.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/error.reporting/make_error_condition.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/defaultfloat.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/fixed.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/hexfloat.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/scientific.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/boolalpha.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/noboolalpha.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/noshowbase.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/noshowpoint.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/noshowpos.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/noskipws.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nounitbuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/nouppercase.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/showbase.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/showpoint.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/showpos.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/skipws.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/unitbuf.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/uppercase.pass.cpp create mode 100644 test/std/input.output/iostreams.base/std.ios.manip/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.base/stream.types/streamoff.pass.cpp create mode 100644 test/std/input.output/iostreams.base/stream.types/streamsize.pass.cpp create mode 100644 test/std/input.output/iostreams.requirements/iostream.limits.imbue/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/iostreams.requirements/iostreams.limits.pos/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.requirements/iostreams.threadsafety/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/iostreams.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf.reqts/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.cons/copy.fail.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.cons/copy.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.cons/default.fail.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.cons/default.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/pubseekoff.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/pubseekpos.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/pubsetbuf.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/pubsync.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.locales/locales.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/in_avail.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/sbumpc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/sgetc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/sgetn.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/snextc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/sputbackc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/sungetc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/sputc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/sputn.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/assign.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/swap.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/gbump.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/setg.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/pbump2gig.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/setp.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.buffer/tested_elsewhere.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/showmanyc.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/uflow.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/underflow.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/xsgetn.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.locales/nothing_to_do.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.pback/pbackfail.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/overflow.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/xsputn.pass.cpp create mode 100644 test/std/input.output/stream.buffers/streambuf/types.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.assign/move.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.cons/default.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.cons/move.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.cons/string.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/istringstream.members/str.pass.cpp create mode 100644 test/std/input.output/string.streams/istringstream/types.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.assign/move.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.cons/default.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.cons/move.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.cons/string.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/ostringstream.members/str.pass.cpp create mode 100644 test/std/input.output/string.streams/ostringstream/types.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.assign/move.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.cons/default.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.cons/move.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.cons/string.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.members/str.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/overflow.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/pbackfail.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/seekoff.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/seekpos.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/setbuf.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/underflow.pass.cpp create mode 100644 test/std/input.output/string.streams/stringbuf/types.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/default.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/move.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/move2.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/string.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/stringstream.assign/member_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/stringstream.assign/move.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.cons/stringstream.assign/nonmember_swap.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream.members/str.pass.cpp create mode 100644 test/std/input.output/string.streams/stringstream/types.pass.cpp create mode 100644 test/std/iterators/iterator.container/data.pass.cpp create mode 100644 test/std/iterators/iterator.container/empty.array.fail.cpp create mode 100644 test/std/iterators/iterator.container/empty.container.fail.cpp create mode 100644 test/std/iterators/iterator.container/empty.initializer_list.fail.cpp create mode 100644 test/std/iterators/iterator.container/empty.pass.cpp create mode 100644 test/std/iterators/iterator.container/size.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.basic/iterator.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.operations/advance.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.operations/distance.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.operations/next.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.operations/prev.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/const_pointer.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/const_volatile_pointer.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/empty.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/iterator.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/pointer.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/iterator.traits/volatile_pointer.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/std.iterator.tags/bidirectional_iterator_tag.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/std.iterator.tags/forward_iterator_tag.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/std.iterator.tags/input_iterator_tag.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/std.iterator.tags/output_iterator_tag.pass.cpp create mode 100644 test/std/iterators/iterator.primitives/std.iterator.tags/random_access_iterator_tag.pass.cpp create mode 100644 test/std/iterators/iterator.range/begin-end.fail.cpp create mode 100644 test/std/iterators/iterator.range/begin-end.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/bidirectional.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/forward.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/input.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/iterator.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/iterator.requirements.general/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/output.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.requirements/random.access.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterator.synopsis/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/iterators.general/gcc_workaround.pass.cpp create mode 100644 test/std/iterators/iterators.general/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.fail.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/container.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op++/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/lv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/rv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op_astrk/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.inserter/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/back.insert.iterator/types.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.fail.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.cons/container.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op++/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/lv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/rv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op_astrk/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.inserter/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/front.insert.iterator/types.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.cons/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op++/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/lv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op=/rv_value.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/insert.iter.op_astrk/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/inserter/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iter.ops/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/insert.iterator/types.pass.cpp create mode 100644 test/std/iterators/predef.iterators/insert.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/make_move_iterator.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/minus.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.nonmember/plus.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.+=/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.-=/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_eq.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gt.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_gte.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lt.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_lte.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.comp/op_neq.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.fail.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/convert.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/default.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.fail.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/iter.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.conv/tested_elsewhere.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.decr/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.incr/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.ref/op_arrow.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.star/op_star.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.fail.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/move_iterator.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.ops/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iter.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/move.iterator/types.pass.cpp create mode 100644 test/std/iterators/predef.iterators/move.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/default.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.fail.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/iter.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.fail.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/reverse_iterator.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.conv/tested_elsewhere.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.make/make_reverse_iterator.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op!=/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op++/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op+=/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/post.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op--/pre.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op-=/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op.star/op_star.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.fail.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/reverse_iterator.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op==/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opdiff/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opgt=/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.oplt=/test.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opref/op_arrow.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opsum/difference_type.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/predef.iterators/reverse.iterators/reverse.iterator/types.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.cons/copy.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.cons/default.fail.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.cons/default.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.cons/istream.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/arrow.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/dereference.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/equal.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/post_increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/pre_increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istream.iterator/types.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/default.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/istream.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/proxy.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/streambuf.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/equal.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op!=/not_equal.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op++/dereference.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op==/equal.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op_astrk/post_increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op_astrk/pre_increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_proxy/proxy.pass.cpp create mode 100644 test/std/iterators/stream.iterators/istreambuf.iterator/types.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/begin_array.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/begin_const.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/begin_non_const.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/end_array.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/end_const.pass.cpp create mode 100644 test/std/iterators/stream.iterators/iterator.range/end_non_const.pass.cpp create mode 100644 test/std/iterators/stream.iterators/nothing_to_do.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/copy.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ostream.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.cons.des/ostream_delim.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/assign_t.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/dereference.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/ostream.iterator.ops/increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostream.iterator/types.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/ostream.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/streambuf.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/assign_c.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/deref.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/failed.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/increment.pass.cpp create mode 100644 test/std/iterators/stream.iterators/ostreambuf.iterator/types.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.common/common_comparison_category.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.partialord/partialord.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.strongeq/cmp.strongeq.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.strongord/strongord.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.weakeq/cmp.weakeq.pass.cpp create mode 100644 test/std/language.support/cmp/cmp.weakord/weakord.pass.cpp create mode 100644 test/std/language.support/cstdint/cstdint.syn/cstdint.pass.cpp create mode 100644 test/std/language.support/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.dynamic/align_val_t.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/bad.alloc/bad_alloc.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/new.badlength/bad_array_new_length.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/new.handler/new_handler.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/set.new.handler/get_new_handler.pass.cpp create mode 100644 test/std/language.support/support.dynamic/alloc.errors/set.new.handler/set_new_handler.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/delete_align_val_t_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_align_val_t.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_align_val_t_nothrow.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_align_val_t_nothrow_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_align_val_t_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_array.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_array_nothrow.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_array_nothrow_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_array_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_size.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_size_align.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_size_align_nothrow.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/new_size_nothrow.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array11.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array14.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_calls_unsized_delete_array.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.dataraces/not_testable.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.placement/new.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.placement/new_array.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.placement/new_array_ptr.fail.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.placement/new_ptr.fail.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/delete_align_val_t_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_align_val_t.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_align_val_t_nothrow.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_align_val_t_nothrow_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_align_val_t_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_nothrow.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_nothrow_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_replace.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_size.fail.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_size_align.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_size_align_nothrow.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/new_size_nothrow.fail.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete11.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete14.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_calls_unsized_delete.pass.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp create mode 100644 test/std/language.support/support.dynamic/new.delete/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.dynamic/ptr.launder/launder.nodiscard.fail.cpp create mode 100644 test/std/language.support/support.dynamic/ptr.launder/launder.pass.cpp create mode 100644 test/std/language.support/support.dynamic/ptr.launder/launder.types.fail.cpp create mode 100644 test/std/language.support/support.exception/bad.exception/bad_exception.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/assign.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/ctor_copy.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/ctor_default.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/rethrow_nested.pass.cpp create mode 100644 test/std/language.support/support.exception/except.nested/throw_with_nested.pass.cpp create mode 100644 test/std/language.support/support.exception/exception.terminate/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.exception/exception.terminate/set.terminate/get_terminate.pass.cpp create mode 100644 test/std/language.support/support.exception/exception.terminate/set.terminate/set_terminate.pass.cpp create mode 100644 test/std/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp create mode 100644 test/std/language.support/support.exception/exception.terminate/terminate/terminate.pass.cpp create mode 100644 test/std/language.support/support.exception/exception/exception.pass.cpp create mode 100644 test/std/language.support/support.exception/propagation/current_exception.pass.cpp create mode 100644 test/std/language.support/support.exception/propagation/exception_ptr.pass.cpp create mode 100644 test/std/language.support/support.exception/propagation/make_exception_ptr.pass.cpp create mode 100644 test/std/language.support/support.exception/propagation/rethrow_exception.pass.cpp create mode 100644 test/std/language.support/support.exception/uncaught/uncaught_exception.pass.cpp create mode 100644 test/std/language.support/support.exception/uncaught/uncaught_exceptions.pass.cpp create mode 100644 test/std/language.support/support.general/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.initlist/include_cxx03.pass.cpp create mode 100644 test/std/language.support/support.initlist/support.initlist.access/access.pass.cpp create mode 100644 test/std/language.support/support.initlist/support.initlist.cons/default.pass.cpp create mode 100644 test/std/language.support/support.initlist/support.initlist.range/begin_end.pass.cpp create mode 100644 test/std/language.support/support.initlist/types.pass.cpp create mode 100644 test/std/language.support/support.limits/c.limits/cfloat.pass.cpp create mode 100644 test/std/language.support/support.limits/c.limits/climits.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/denorm.style/check_values.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/is_specialized.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/const_data_members.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/denorm_min.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/digits.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/digits10.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/epsilon.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/has_denorm.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/has_denorm_loss.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/has_infinity.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/has_quiet_NaN.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/has_signaling_NaN.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/infinity.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_bounded.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_exact.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_iec559.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_integer.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_modulo.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/is_signed.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/lowest.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/max.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/max_digits10.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/max_exponent.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/max_exponent10.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/min.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/min_exponent.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/min_exponent10.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/quiet_NaN.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/radix.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/round_error.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/round_style.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/signaling_NaN.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/tinyness_before.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits.members/traps.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.limits/default.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/numeric.special/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.limits/limits/round.style/check_values.pass.cpp create mode 100644 test/std/language.support/support.limits/nothing_to_do.pass.cpp create mode 100644 test/std/language.support/support.limits/version.pass.cpp create mode 100644 test/std/language.support/support.rtti/bad.cast/bad_cast.pass.cpp create mode 100644 test/std/language.support/support.rtti/bad.typeid/bad_typeid.pass.cpp create mode 100644 test/std/language.support/support.rtti/type.info/type_info.pass.cpp create mode 100644 test/std/language.support/support.rtti/type.info/type_info_hash.pass.cpp create mode 100644 test/std/language.support/support.runtime/csetjmp.pass.cpp create mode 100644 test/std/language.support/support.runtime/csignal.pass.cpp create mode 100644 test/std/language.support/support.runtime/cstdarg.pass.cpp create mode 100644 test/std/language.support/support.runtime/cstdbool.pass.cpp create mode 100644 test/std/language.support/support.runtime/cstdlib.pass.cpp create mode 100644 test/std/language.support/support.runtime/ctime.pass.cpp create mode 100644 test/std/language.support/support.start.term/quick_exit.pass.cpp create mode 100644 test/std/language.support/support.start.term/quick_exit_check1.fail.cpp create mode 100644 test/std/language.support/support.start.term/quick_exit_check2.fail.cpp create mode 100644 test/std/language.support/support.types/byte.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/and.assign.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/and.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/enum_direct_init.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/lshift.assign.fail.cpp create mode 100644 test/std/language.support/support.types/byteops/lshift.assign.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/lshift.fail.cpp create mode 100644 test/std/language.support/support.types/byteops/lshift.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/not.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/or.assign.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/or.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/rshift.assign.fail.cpp create mode 100644 test/std/language.support/support.types/byteops/rshift.assign.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/rshift.fail.cpp create mode 100644 test/std/language.support/support.types/byteops/rshift.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/to_integer.fail.cpp create mode 100644 test/std/language.support/support.types/byteops/to_integer.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/xor.assign.pass.cpp create mode 100644 test/std/language.support/support.types/byteops/xor.pass.cpp create mode 100644 test/std/language.support/support.types/max_align_t.pass.cpp create mode 100644 test/std/language.support/support.types/null.pass.cpp create mode 100644 test/std/language.support/support.types/nullptr_t.pass.cpp create mode 100644 test/std/language.support/support.types/nullptr_t_integral_cast.fail.cpp create mode 100644 test/std/language.support/support.types/nullptr_t_integral_cast.pass.cpp create mode 100644 test/std/language.support/support.types/offsetof.pass.cpp create mode 100644 test/std/language.support/support.types/ptrdiff_t.pass.cpp create mode 100644 test/std/language.support/support.types/size_t.pass.cpp create mode 100644 test/std/localization/c.locales/clocale.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate.byname/compare.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate.byname/hash.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate.byname/transform.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate.byname/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.members/compare.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.members/hash.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.members/transform.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/locale.collate/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.collate/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/ctype_base.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/is_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/is_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/narrow_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/narrow_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/scan_is.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/scan_not.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/table.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/tolower_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/tolower_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/toupper_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/toupper_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/widen_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/widen_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.statics/classic_table.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/facet.ctype.special/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_char.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_char16_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_char32_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt.byname/ctor_wchar_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/codecvt_base.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/ctor_char.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/ctor_char16_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/ctor_char32_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/ctor_wchar_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_encoding.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_in.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_max_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_out.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char16_t_unshift.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_encoding.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_in.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_max_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_out.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char32_t_unshift.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_encoding.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_in.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_max_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_out.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/char_unshift.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/utf_sanity_check.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_encoding.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_in.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_max_length.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_unshift.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/types_char.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/types_char16_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/types_char32_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.codecvt/types_wchar_t.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/is_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/is_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/mask.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/narrow_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/scan_is.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/scan_not.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/tolower_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/toupper_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/widen_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype.byname/widen_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/is_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/is_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/narrow_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/narrow_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/scan_is.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/scan_not.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/tolower_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/tolower_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/toupper_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/toupper_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/widen_1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/widen_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.ctype/locale.ctype/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages.byname/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages/locale.messages.members/not_testable.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages/locale.messages.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages/messages_base.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/locale.messages/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.messages/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_en_US.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_ru_RU.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_zh_CN.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_string_en_US.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.get/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_en_US.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_ru_RU.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_zh_CN.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_string_en_US.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.money.put/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/curr_symbol.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/decimal_point.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/frac_digits.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/neg_format.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/negative_sign.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/pos_format.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/positive_sign.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/thousands_sep.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/curr_symbol.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/decimal_point.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/frac_digits.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/grouping.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/neg_format.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/negative_sign.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/pos_format.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/positive_sign.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/thousands_sep.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/money_base.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.monetary/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_bool.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_double.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_pointer.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.nm.put/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_bool.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_pointer.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_int.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_long_long.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_unsigned_short.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_neg_one.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/locale.num.get/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.numeric/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/date_order.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/date_order_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_monthname_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_one.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_one_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_time.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_time_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_weekday.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_weekday_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_year.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get.byname/get_year_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/date_order.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_date_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_many.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_monthname_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_one.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_time_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_weekday_wide.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/get_year.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/locale.time.get.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/time_base.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.get/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put.byname/put1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put1.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/put2.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/locale.time.put/types.pass.cpp create mode 100644 test/std/localization/locale.categories/category.time/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/decimal_point.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/grouping.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/thousands_sep.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/ctor.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/decimal_point.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/falsename.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/grouping.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/thousands_sep.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/truename.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.virtuals/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/locale.numpunct/types.pass.cpp create mode 100644 test/std/localization/locale.categories/facet.numpunct/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.categories/facets.examples/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_mode.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_encoding.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_in.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_max_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_out.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf16_unshift.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_encoding.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_in.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_max_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_out.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_unshift.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_always_noconv.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_encoding.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_in.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_max_length.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_out.pass.cpp create mode 100644 test/std/localization/locale.stdcvt/codecvt_utf8_utf16_unshift.pass.cpp create mode 100644 test/std/localization/locale.syn/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isalnum.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isalpha.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/iscntrl.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isdigit.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isgraph.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/islower.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isprint.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/ispunct.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isspace.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isupper.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/classification/isxdigit.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ctor.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/lit.local.cfg create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/overflow.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/pbackfail.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/rdbuf.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/seekoff.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/state.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/test.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/underflow.dat create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/underflow.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.buffer/underflow_utf8.dat create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.character/tolower.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.character/toupper.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/converted.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/ctor_codecvt.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/ctor_codecvt_state.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/ctor_copy.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/ctor_err_string.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/from_bytes.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/state.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/to_bytes.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/conversions.string/types.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/conversions/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locales/locale.convenience/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locales/locale.global.templates/has_facet.pass.cpp create mode 100644 test/std/localization/locales/locale.global.templates/use_facet.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/assign.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/char_pointer.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/copy.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/default.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/locale_char_pointer_cat.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/locale_facetptr.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/locale_locale_cat.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/locale_string_cat.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.cons/string.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.members/combine.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.members/name.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.operators/compare.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.operators/eq.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.statics/classic.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.statics/global.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.types/locale.category/category.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.types/locale.facet/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.types/locale.id/tested_elsewhere.pass.cpp create mode 100644 test/std/localization/locales/locale/locale.types/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locales/locale/nothing_to_do.pass.cpp create mode 100644 test/std/localization/locales/nothing_to_do.pass.cpp create mode 100644 test/std/localization/localization.general/nothing_to_do.pass.cpp create mode 100644 test/std/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/c.math/cmath.pass.cpp create mode 100644 test/std/numerics/c.math/ctgmath.pass.cpp create mode 100644 test/std/numerics/c.math/tgmath_h.pass.cpp create mode 100644 test/std/numerics/cfenv/cfenv.syn/cfenv.pass.cpp create mode 100644 test/std/numerics/complex.number/cases.h create mode 100644 test/std/numerics/complex.number/ccmplx/ccomplex.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/UDT_is_rejected.fail.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/arg.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/conj.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/imag.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/norm.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/pow.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/proj.pass.cpp create mode 100644 test/std/numerics/complex.number/cmplx.over/real.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.literals/literals.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.literals/literals1.fail.cpp create mode 100644 test/std/numerics/complex.number/complex.literals/literals1.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.literals/literals2.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/assignment_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/assignment_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/divide_equal_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/divide_equal_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/minus_equal_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/minus_equal_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/plus_equal_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/plus_equal_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/times_equal_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.member.ops/times_equal_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.members/construct.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.members/real_imag.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_divide_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_divide_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_equals_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_equals_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_minus_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_minus_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_not_equals_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_not_equals_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_plus_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_plus_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_times_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/complex_times_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_divide_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_equals_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_minus_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_not_equals_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_plus_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/scalar_times_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/stream_input.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/stream_output.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/unary_minus.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.ops/unary_plus.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/double_float_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/double_float_implicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/double_long_double_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/double_long_double_implicit.fail.cpp create mode 100644 test/std/numerics/complex.number/complex.special/float_double_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/float_double_implicit.fail.cpp create mode 100644 test/std/numerics/complex.number/complex.special/float_long_double_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/float_long_double_implicit.fail.cpp create mode 100644 test/std/numerics/complex.number/complex.special/long_double_double_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/long_double_double_implicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/long_double_float_explicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.special/long_double_float_implicit.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.synopsis/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/acos.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/acosh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/asin.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/asinh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/atan.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/atanh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/cos.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/cosh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/exp.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/log.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/log10.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/pow_complex_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/pow_complex_scalar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/pow_scalar_complex.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/sin.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/sinh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/sqrt.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/tan.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.transcendentals/tanh.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/abs.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/arg.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/conj.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/imag.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/norm.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/polar.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/proj.pass.cpp create mode 100644 test/std/numerics/complex.number/complex.value.ops/real.pass.cpp create mode 100644 test/std/numerics/complex.number/complex/types.pass.cpp create mode 100644 test/std/numerics/complex.number/layout.pass.cpp create mode 100644 test/std/numerics/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numarray/class.gslice/gslice.access/tested_elsewhere.pass.cpp create mode 100644 test/std/numerics/numarray/class.gslice/gslice.cons/default.pass.cpp create mode 100644 test/std/numerics/numarray/class.gslice/gslice.cons/start_size_stride.pass.cpp create mode 100644 test/std/numerics/numarray/class.gslice/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numarray/class.slice/cons.slice/default.pass.cpp create mode 100644 test/std/numerics/numarray/class.slice/cons.slice/start_size_stride.pass.cpp create mode 100644 test/std/numerics/numarray/class.slice/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numarray/class.slice/slice.access/tested_elsewhere.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/default.fail.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.assign/gslice_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.assign/valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/addition.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/and.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/divide.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/modulo.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/multiply.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/or.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/shift_left.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/shift_right.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/subtraction.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.comp.assign/xor.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/gslice.array.fill/assign_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.gslice.array/types.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/default.fail.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.assign/indirect_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.assign/valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/addition.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/and.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/divide.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/modulo.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/multiply.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/or.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/shift_left.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/shift_right.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/subtraction.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.comp.assign/xor.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/indirect.array.fill/assign_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.indirect.array/types.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/default.fail.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.assign/mask_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.assign/valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/addition.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/and.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/divide.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/modulo.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/multiply.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/or.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/shift_left.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/shift_right.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/subtraction.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.comp.assign/xor.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/mask.array.fill/assign_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.mask.array/types.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/default.fail.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.assign/slice_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.assign/valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/addition.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/and.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/divide.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/modulo.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/multiply.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/or.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/shift_left.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/shift_right.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/subtraction.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.comp.assign/xor.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/slice.arr.fill/assign_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.slice.array/types.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/types.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.access/access.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.access/const_access.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/copy_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/gslice_array_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/indirect_array_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/initializer_list_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/mask_array_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/move_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/slice_array_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.assign/value_assign.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/and_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/and_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/divide_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/divide_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/minus_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/minus_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/modulo_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/modulo_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/or_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/or_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/plus_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/plus_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/shift_left_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/shift_left_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/shift_right_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/shift_right_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/times_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/times_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/xor_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cassign/xor_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/copy.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/default.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/gslice_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/indirect_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/initializer_list.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/mask_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/move.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/pointer_size.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/size.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/slice_array.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/apply_cref.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/apply_value.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/cshift.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/max.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/min.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/resize.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/shift.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/size.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/sum.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.members/swap.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/gslice_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/gslice_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/indirect_array_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/indirect_array_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/slice_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/slice_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/valarray_bool_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.sub/valarray_bool_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.unary/bit_not.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.unary/negate.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.unary/not.pass.cpp create mode 100644 test/std/numerics/numarray/template.valarray/valarray.unary/plus.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/and_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/and_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/and_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/minus_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/minus_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/minus_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/modulo_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/or_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/or_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/or_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/plus_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/plus_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/plus_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_left_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_left_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_left_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_right_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_right_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/shift_right_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/times_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/times_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/times_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/xor_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/xor_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.binary/xor_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/and_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/and_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/and_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/equal_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/equal_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/equal_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_equal_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_equal_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_equal_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/greater_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_equal_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_equal_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_equal_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/less_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/not_equal_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/not_equal_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/not_equal_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/or_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/or_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/or_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.special/swap.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/abs_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/acos_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/asin_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/atan2_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/atan2_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/atan2_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/atan_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/cos_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/cosh_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/exp_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/log10_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/log_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/pow_valarray_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/pow_valarray_value.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/pow_value_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/sin_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/sinh_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/sqrt_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/tan_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/tanh_valarray.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.range/begin_const.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.range/begin_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.range/end_const.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.range/end_non_const.pass.cpp create mode 100644 test/std/numerics/numarray/valarray.syn/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numeric.ops/accumulate/accumulate.pass.cpp create mode 100644 test/std/numerics/numeric.ops/accumulate/accumulate_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/adjacent.difference/adjacent_difference.pass.cpp create mode 100644 test/std/numerics/numeric.ops/adjacent.difference/adjacent_difference_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/exclusive.scan/exclusive_scan.pass.cpp create mode 100644 test/std/numerics/numeric.ops/exclusive.scan/exclusive_scan_init_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan.pass.cpp create mode 100644 test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan_op_init.pass.cpp create mode 100644 test/std/numerics/numeric.ops/inner.product/inner_product.pass.cpp create mode 100644 test/std/numerics/numeric.ops/inner.product/inner_product_comp.pass.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.iota/iota.pass.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool1.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool2.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool3.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.bool4.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral1.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.not_integral2.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.gcd/gcd.pass.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool1.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool2.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool3.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.bool4.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral1.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp create mode 100644 test/std/numerics/numeric.ops/numeric.ops.lcm/lcm.pass.cpp create mode 100644 test/std/numerics/numeric.ops/partial.sum/partial_sum.pass.cpp create mode 100644 test/std/numerics/numeric.ops/partial.sum/partial_sum_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/reduce/reduce.pass.cpp create mode 100644 test/std/numerics/numeric.ops/reduce/reduce_init.pass.cpp create mode 100644 test/std/numerics/numeric.ops/reduce/reduce_init_op.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.exclusive.scan/transform_exclusive_scan_init_bop_uop.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.inclusive.scan/transform_inclusive_scan_bop_uop.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.inclusive.scan/transform_inclusive_scan_bop_uop_init.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.reduce/transform_reduce_iter_iter_init_bop_uop.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.reduce/transform_reduce_iter_iter_iter_init.pass.cpp create mode 100644 test/std/numerics/numeric.ops/transform.reduce/transform_reduce_iter_iter_iter_init_op_op.pass.cpp create mode 100644 test/std/numerics/numeric.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/numerics.general/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/ctor_engine_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/ctor_engine_move.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.disc/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ctor_engine_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ctor_engine_move.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.ibits/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ctor_engine_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ctor_engine_move.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.adapt/rand.adapt.shuf/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.device/ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.device/entropy.pass.cpp create mode 100644 test/std/numerics/rand/rand.device/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/ctor_int_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/ctor_int_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/ctor_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/ctor_double_double.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ctor_init.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_ctor_init.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.discrete/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ctor_init_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_ctor_init_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ctor_init_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_ctor_default.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_ctor_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_ctor_init_func.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_ctor_iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/ctor_int_int.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.int/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/ctor_int_int.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/ctor_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/eval_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/get_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/max.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/min.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/param_assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/param_copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/param_ctor.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/param_eq.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/param_types.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/set_param.pass.cpp create mode 100644 test/std/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/types.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.lcong/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.mers/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/assign.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/copy.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/ctor_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/ctor_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/discard.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/eval.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/io.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/seed_result_type.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/seed_sseq.pass.cpp create mode 100644 test/std/numerics/rand/rand.eng/rand.eng.sub/values.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/default_random_engine.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/knuth_b.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/minstd_rand.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/minstd_rand0.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/mt19937.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/mt19937_64.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/ranlux24.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/ranlux24_base.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/ranlux48.pass.cpp create mode 100644 test/std/numerics/rand/rand.predef/ranlux48_base.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.adapt/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.dst/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.eng/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.genl/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.seedseq/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.req/rand.req.urng/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/nothing_to_do.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.canonical/generate_canonical.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/copy.fail.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/default.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/generate.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/initializer_list.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/iterator.pass.cpp create mode 100644 test/std/numerics/rand/rand.util/rand.util.seedseq/types.pass.cpp create mode 100644 test/std/re/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.alg/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/awk.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/basic.fail.cpp create mode 100644 test/std/re/re.alg/re.alg.match/basic.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/ecma.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/egrep.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/exponential.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/extended.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/grep.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/inverted_character_classes.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/lookahead_capture.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.match/parse_curly_brackets.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test1.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test2.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test3.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test4.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test5.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.replace/test6.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/awk.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/backup.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/basic.fail.cpp create mode 100644 test/std/re/re.alg/re.alg.search/basic.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/ecma.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/egrep.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/exponential.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/extended.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/grep.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/invert_neg_word_search.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/lookahead.pass.cpp create mode 100644 test/std/re/re.alg/re.alg.search/no_update_pos.pass.cpp create mode 100644 test/std/re/re.alg/re.except/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.badexp/regex_error.pass.cpp create mode 100644 test/std/re/re.const/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.const/re.err/error_type.pass.cpp create mode 100644 test/std/re/re.const/re.matchflag/match_flag_type.pass.cpp create mode 100644 test/std/re/re.const/re.matchflag/match_not_bol.pass.cpp create mode 100644 test/std/re/re.const/re.matchflag/match_not_eol.pass.cpp create mode 100644 test/std/re/re.const/re.matchflag/match_not_null.pass.cpp create mode 100644 test/std/re/re.const/re.synopt/syntax_option_type.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.collating.element/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.finite.state.machine/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.format.specifier/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.matched/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.primary.equivalence.class/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.regular.expression/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/defns.regex.subexpression/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.def/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.general/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.grammar/excessive_brace_count.pass.cpp create mode 100644 test/std/re/re.grammar/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.iter/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.cnstr/cnstr.fail.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.cnstr/cnstr.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.cnstr/default.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.comp/tested_elsewhere.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.deref/deref.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/re.regiter.incr/post.pass.cpp create mode 100644 test/std/re/re.iter/re.regiter/types.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/array.fail.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/array.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/default.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/init.fail.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/init.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/int.fail.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/int.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/vector.fail.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/vector.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.comp/equal.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.deref/deref.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/re.tokiter.incr/post.pass.cpp create mode 100644 test/std/re/re.iter/re.tokiter/types.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign.il.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign_iter_iter_flag.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign_ptr_flag.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign_ptr_size_flag.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/assign_string_flag.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/copy.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/il.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/ptr.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.assign/string.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.const/constants.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/awk_oct.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/bad_backref.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/bad_ctype.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/bad_escape.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/bad_repeat.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/copy.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/deduct.fail.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/deduct.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/default.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/il_flg.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/iter_iter.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/iter_iter_flg.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/ptr.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/ptr_flg.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/ptr_size.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/ptr_size_flg.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/string.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.construct/string_flg.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.locale/imbue.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.nonmemb/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.nonmemb/re.regex.nmswap/swap.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.operations/tested_elsewhere.pass.cpp create mode 100644 test/std/re/re.regex/re.regex.swap/swap.pass.cpp create mode 100644 test/std/re/re.regex/types.pass.cpp create mode 100644 test/std/re/re.req/nothing_to_do.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/begin_end.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/cbegin_cend.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/index.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/length.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/position.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/prefix.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/str.pass.cpp create mode 100644 test/std/re/re.results/re.results.acc/suffix.pass.cpp create mode 100644 test/std/re/re.results/re.results.all/get_allocator.pass.cpp create mode 100644 test/std/re/re.results/re.results.const/allocator.pass.cpp create mode 100644 test/std/re/re.results/re.results.const/default.pass.cpp create mode 100644 test/std/re/re.results/re.results.form/form1.pass.cpp create mode 100644 test/std/re/re.results/re.results.form/form2.pass.cpp create mode 100644 test/std/re/re.results/re.results.form/form3.pass.cpp create mode 100644 test/std/re/re.results/re.results.form/form4.pass.cpp create mode 100644 test/std/re/re.results/re.results.nonmember/equal.pass.cpp create mode 100644 test/std/re/re.results/re.results.size/empty.fail.cpp create mode 100644 test/std/re/re.results/re.results.size/empty.pass.cpp create mode 100644 test/std/re/re.results/re.results.size/max_size.pass.cpp create mode 100644 test/std/re/re.results/re.results.state/ready.pass.cpp create mode 100644 test/std/re/re.results/re.results.swap/member_swap.pass.cpp create mode 100644 test/std/re/re.results/re.results.swap/non_member_swap.pass.cpp create mode 100644 test/std/re/re.results/types.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/compare_string_type.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/compare_sub_match.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/compare_value_type_ptr.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/default.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/length.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/operator_string.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.members/str.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.op/compare.pass.cpp create mode 100644 test/std/re/re.submatch/re.submatch.op/stream.pass.cpp create mode 100644 test/std/re/re.submatch/types.pass.cpp create mode 100644 test/std/re/re.syn/cmatch.pass.cpp create mode 100644 test/std/re/re.syn/cregex_iterator.pass.cpp create mode 100644 test/std/re/re.syn/cregex_token_iterator.pass.cpp create mode 100644 test/std/re/re.syn/csub_match.pass.cpp create mode 100644 test/std/re/re.syn/regex.pass.cpp create mode 100644 test/std/re/re.syn/smatch.pass.cpp create mode 100644 test/std/re/re.syn/sregex_iterator.pass.cpp create mode 100644 test/std/re/re.syn/sregex_token_iterator.pass.cpp create mode 100644 test/std/re/re.syn/ssub_match.pass.cpp create mode 100644 test/std/re/re.syn/wcmatch.pass.cpp create mode 100644 test/std/re/re.syn/wcregex_iterator.pass.cpp create mode 100644 test/std/re/re.syn/wcregex_token_iterator.pass.cpp create mode 100644 test/std/re/re.syn/wcsub_match.pass.cpp create mode 100644 test/std/re/re.syn/wregex.pass.cpp create mode 100644 test/std/re/re.syn/wsmatch.pass.cpp create mode 100644 test/std/re/re.syn/wsregex_iterator.pass.cpp create mode 100644 test/std/re/re.syn/wsregex_token_iterator.pass.cpp create mode 100644 test/std/re/re.syn/wssub_match.pass.cpp create mode 100644 test/std/re/re.traits/default.pass.cpp create mode 100644 test/std/re/re.traits/getloc.pass.cpp create mode 100644 test/std/re/re.traits/imbue.pass.cpp create mode 100644 test/std/re/re.traits/isctype.pass.cpp create mode 100644 test/std/re/re.traits/length.pass.cpp create mode 100644 test/std/re/re.traits/lookup_classname.pass.cpp create mode 100644 test/std/re/re.traits/lookup_collatename.pass.cpp create mode 100644 test/std/re/re.traits/transform.pass.cpp create mode 100644 test/std/re/re.traits/transform_primary.pass.cpp create mode 100644 test/std/re/re.traits/translate.pass.cpp create mode 100644 test/std/re/re.traits/translate_nocase.pass.cpp create mode 100644 test/std/re/re.traits/types.pass.cpp create mode 100644 test/std/re/re.traits/value.pass.cpp create mode 100644 test/std/strings/basic.string.hash/enabled_hashes.pass.cpp create mode 100644 test/std/strings/basic.string.hash/strings.pass.cpp create mode 100644 test/std/strings/basic.string.literals/literal.pass.cpp create mode 100644 test/std/strings/basic.string.literals/literal1.fail.cpp create mode 100644 test/std/strings/basic.string.literals/literal1.pass.cpp create mode 100644 test/std/strings/basic.string.literals/literal2.fail.cpp create mode 100644 test/std/strings/basic.string.literals/literal2.pass.cpp create mode 100644 test/std/strings/basic.string.literals/literal3.pass.cpp create mode 100644 test/std/strings/basic.string/allocator_mismatch.fail.cpp create mode 100644 test/std/strings/basic.string/char.bad.fail.cpp create mode 100644 test/std/strings/basic.string/input_iterator.h create mode 100644 test/std/strings/basic.string/string.access/at.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/back.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_back.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_cback.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_cfront.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_cindex.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_front.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/db_index.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/front.pass.cpp create mode 100644 test/std/strings/basic.string/string.access/index.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/capacity.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/clear.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/empty.fail.cpp create mode 100644 test/std/strings/basic.string/string.capacity/empty.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/length.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/max_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/over_max_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/reserve.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/resize_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/resize_size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/shrink_to_fit.pass.cpp create mode 100644 test/std/strings/basic.string/string.capacity/size.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/brace_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/char_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/copy.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/copy_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/default_noexcept.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/dtor_noexcept.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/initializer_list_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/iter_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/iter_alloc_deduction.fail.cpp create mode 100644 test/std/strings/basic.string/string.cons/iter_alloc_deduction.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/move.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/move_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/move_assign_noexcept.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/move_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/move_noexcept.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/pointer_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/pointer_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/pointer_size_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/size_char_alloc.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view.fail.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view_assignment.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view_deduction.fail.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view_deduction.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view_size_size_deduction.fail.cpp create mode 100644 test/std/strings/basic.string/string.cons/string_view_size_size_deduction.pass.cpp create mode 100644 test/std/strings/basic.string/string.cons/substr.pass.cpp create mode 100644 test/std/strings/basic.string/string.ends_with/ends_with.char.pass.cpp create mode 100644 test/std/strings/basic.string/string.ends_with/ends_with.ptr.pass.cpp create mode 100644 test/std/strings/basic.string/string.ends_with/ends_with.string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/begin.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/cbegin.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/cend.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/crbegin.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/crend.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_2.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_3.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_4.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_5.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_6.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_7.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/db_iterators_8.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/end.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/iterators.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/rbegin.pass.cpp create mode 100644 test/std/strings/basic.string/string.iterators/rend.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/nothing_to_do.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/iterator.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/string_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_append/string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/iterator.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/rv_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/string_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_assign/string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_copy/copy.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_erase/iter.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_erase/iter_iter.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_erase/pop_back.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_erase/size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/iter_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/iter_initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/iter_iter_iter.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/iter_size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/size_string_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_insert/string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_op_plus_equal/char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_op_plus_equal/initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_op_plus_equal/pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_op_plus_equal/string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_initializer_list.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_iter_iter.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/iter_iter_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_size_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_string_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_replace/size_size_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.modifiers/string_swap/swap.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/nothing_to_do.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/get_line.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/get_line_delim_rv.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/get_line_rv.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/stream_extract.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.io/stream_insert.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.special/swap.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string.special/swap_noexcept.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op!=/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op!=/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op!=/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op!=/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op!=/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op+/char_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op+/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op+/string_char.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op+/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_op+/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_operator==/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_operator==/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_operator==/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_operator==/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_operator==/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt=/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt=/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt=/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt=/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_opgt=/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt=/pointer_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt=/string_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt=/string_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt=/string_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.nonmembers/string_oplt=/string_view_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/nothing_to_do.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string.accessors/c_str.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string.accessors/data.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string.accessors/get_allocator.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_T_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_pointer.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_string.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_string_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/size_size_string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/string.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_compare/string_view.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.not.of/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.not.of/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.not.of/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.not.of/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.not.of/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.of/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.of/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.of/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.of/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.first.of/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.not.of/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.not.of/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.not.of/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.not.of/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.not.of/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.of/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.of/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.of/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.of/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find.last.of/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_find/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_rfind/char_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_rfind/pointer_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_rfind/pointer_size_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_rfind/string_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_rfind/string_view_size.pass.cpp create mode 100644 test/std/strings/basic.string/string.ops/string_substr/substr.pass.cpp create mode 100644 test/std/strings/basic.string/string.require/contiguous.pass.cpp create mode 100644 test/std/strings/basic.string/string.starts_with/starts_with.char.pass.cpp create mode 100644 test/std/strings/basic.string/string.starts_with/starts_with.ptr.pass.cpp create mode 100644 test/std/strings/basic.string/string.starts_with/starts_with.string_view.pass.cpp create mode 100644 test/std/strings/basic.string/test_traits.h create mode 100644 test/std/strings/basic.string/traits_mismatch.fail.cpp create mode 100644 test/std/strings/basic.string/types.pass.cpp create mode 100644 test/std/strings/c.strings/cctype.pass.cpp create mode 100644 test/std/strings/c.strings/cstring.pass.cpp create mode 100644 test/std/strings/c.strings/cuchar.pass.cpp create mode 100644 test/std/strings/c.strings/cwchar.pass.cpp create mode 100644 test/std/strings/c.strings/cwctype.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.require/nothing_to_do.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/assign2.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/assign3.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/compare.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/copy.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/eq.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/eq_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/find.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/length.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/lt.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/move.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/not_eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/to_char_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/to_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/types.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/assign2.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/assign3.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/compare.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/copy.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/eq.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/eq_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/find.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/length.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/lt.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/move.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/not_eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/to_char_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/to_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/types.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/assign2.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/assign3.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/compare.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/copy.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/eq.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/eq_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/find.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/length.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/lt.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/move.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/not_eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/to_char_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/to_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/types.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/assign2.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/assign3.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/compare.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/copy.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/eq.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/eq_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/find.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/length.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/lt.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/move.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/not_eof.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/to_char_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/to_int_type.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/types.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.specializations/nothing_to_do.pass.cpp create mode 100644 test/std/strings/char.traits/char.traits.typedefs/nothing_to_do.pass.cpp create mode 100644 test/std/strings/char.traits/nothing_to_do.pass.cpp create mode 100644 test/std/strings/string.classes/typedefs.pass.cpp create mode 100644 test/std/strings/string.conversions/stod.pass.cpp create mode 100644 test/std/strings/string.conversions/stof.pass.cpp create mode 100644 test/std/strings/string.conversions/stoi.pass.cpp create mode 100644 test/std/strings/string.conversions/stol.pass.cpp create mode 100644 test/std/strings/string.conversions/stold.pass.cpp create mode 100644 test/std/strings/string.conversions/stoll.pass.cpp create mode 100644 test/std/strings/string.conversions/stoul.pass.cpp create mode 100644 test/std/strings/string.conversions/stoull.pass.cpp create mode 100644 test/std/strings/string.conversions/to_string.pass.cpp create mode 100644 test/std/strings/string.conversions/to_wstring.pass.cpp create mode 100644 test/std/strings/string.view/char.bad.fail.cpp create mode 100644 test/std/strings/string.view/string.view.access/at.pass.cpp create mode 100644 test/std/strings/string.view/string.view.access/back.pass.cpp create mode 100644 test/std/strings/string.view/string.view.access/data.pass.cpp create mode 100644 test/std/strings/string.view/string.view.access/front.pass.cpp create mode 100644 test/std/strings/string.view/string.view.access/index.pass.cpp create mode 100644 test/std/strings/string.view/string.view.capacity/capacity.pass.cpp create mode 100644 test/std/strings/string.view/string.view.capacity/empty.fail.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opeq.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opeq.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opeq.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opge.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opge.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opge.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opgt.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opgt.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opgt.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/ople.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/ople.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/ople.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/oplt.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/oplt.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/oplt.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opne.string_view.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opne.string_view.string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.comparison/opne.string_view.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/assign.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/default.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/from_literal.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/from_ptr_len.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/from_string.pass.cpp create mode 100644 test/std/strings/string.view/string.view.cons/from_string1.fail.cpp create mode 100644 test/std/strings/string.view/string.view.cons/from_string2.fail.cpp create mode 100644 test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_not_of_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_not_of_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_not_of_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_of_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_of_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_of_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_first_of_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_not_of_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_not_of_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_not_of_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_of_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_of_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_of_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_last_of_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/find_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/rfind_char_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/rfind_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/rfind_pointer_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.find/rfind_string_view_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.hash/enabled_hashes.pass.cpp create mode 100644 test/std/strings/string.view/string.view.hash/string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.io/stream_insert.pass.cpp create mode 100644 test/std/strings/string.view/string.view.iterators/begin.pass.cpp create mode 100644 test/std/strings/string.view/string.view.iterators/end.pass.cpp create mode 100644 test/std/strings/string.view/string.view.iterators/rbegin.pass.cpp create mode 100644 test/std/strings/string.view/string.view.iterators/rend.pass.cpp create mode 100644 test/std/strings/string.view/string.view.modifiers/remove_prefix.pass.cpp create mode 100644 test/std/strings/string.view/string.view.modifiers/remove_suffix.pass.cpp create mode 100644 test/std/strings/string.view/string.view.modifiers/swap.pass.cpp create mode 100644 test/std/strings/string.view/string.view.nonmem/quoted.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.pointer.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.size_size_sv.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.size_size_sv_pointer_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.size_size_sv_size_size.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/compare.sv.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/copy.pass.cpp create mode 100644 test/std/strings/string.view/string.view.ops/substr.pass.cpp create mode 100644 test/std/strings/string.view/string.view.synop/nothing_to_do.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/ends_with.char.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/ends_with.ptr.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/ends_with.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/nothing_to_do.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/starts_with.char.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/starts_with.ptr.pass.cpp create mode 100644 test/std/strings/string.view/string.view.template/starts_with.string_view.pass.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal.pass.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal1.fail.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal1.pass.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal2.fail.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal2.pass.cpp create mode 100644 test/std/strings/string.view/string_view.literals/literal3.pass.cpp create mode 100644 test/std/strings/string.view/traits_mismatch.fail.cpp create mode 100644 test/std/strings/string.view/types.pass.cpp create mode 100644 test/std/strings/strings.general/nothing_to_do.pass.cpp create mode 100644 test/std/thread/futures/futures.async/async.fail.cpp create mode 100644 test/std/thread/futures/futures.async/async.pass.cpp create mode 100644 test/std/thread/futures/futures.async/async_race.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/default_error_condition.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/equivalent_error_code_int.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/equivalent_int_error_condition.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/future_category.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/make_error_code.pass.cpp create mode 100644 test/std/thread/futures/futures.errors/make_error_condition.pass.cpp create mode 100644 test/std/thread/futures/futures.future_error/code.pass.cpp create mode 100644 test/std/thread/futures/futures.future_error/types.pass.cpp create mode 100644 test/std/thread/futures/futures.future_error/what.pass.cpp create mode 100644 test/std/thread/futures/futures.overview/future_errc.pass.cpp create mode 100644 test/std/thread/futures/futures.overview/future_status.pass.cpp create mode 100644 test/std/thread/futures/futures.overview/is_error_code_enum_future_errc.pass.cpp create mode 100644 test/std/thread/futures/futures.overview/launch.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/alloc_ctor.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/copy_assign.fail.cpp create mode 100644 test/std/thread/futures/futures.promise/copy_ctor.fail.cpp create mode 100644 test/std/thread/futures/futures.promise/default.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/dtor.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/get_future.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/move_assign.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/move_ctor.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_exception.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_exception_at_thread_exit.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_lvalue.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_lvalue_at_thread_exit.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_rvalue.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_rvalue_at_thread_exit.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_value_at_thread_exit_const.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_value_at_thread_exit_void.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_value_const.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/set_value_void.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/swap.pass.cpp create mode 100644 test/std/thread/futures/futures.promise/uses_allocator.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/copy_assign.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/copy_ctor.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/ctor_future.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/default.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/dtor.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/get.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/move_assign.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/move_ctor.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/wait.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/wait_for.pass.cpp create mode 100644 test/std/thread/futures/futures.shared_future/wait_until.pass.cpp create mode 100644 test/std/thread/futures/futures.state/nothing_to_do.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/assign_copy.fail.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/assign_move.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor1.fail.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor2.fail.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor_copy.fail.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor_default.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor_func.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor_func_alloc.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/ctor_move.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/dtor.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/get_future.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/make_ready_at_thread_exit.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/operator.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/reset.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.members/swap.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.nonmembers/swap.pass.cpp create mode 100644 test/std/thread/futures/futures.task/futures.task.nonmembers/uses_allocator.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/copy_assign.fail.cpp create mode 100644 test/std/thread/futures/futures.unique_future/copy_ctor.fail.cpp create mode 100644 test/std/thread/futures/futures.unique_future/default.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/dtor.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/get.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/move_assign.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/move_ctor.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/share.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/wait.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/wait_for.pass.cpp create mode 100644 test/std/thread/futures/futures.unique_future/wait_until.pass.cpp create mode 100644 test/std/thread/macro.pass.cpp create mode 100644 test/std/thread/thread.condition/cv_status.pass.cpp create mode 100644 test/std/thread/thread.condition/notify_all_at_thread_exit.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/assign.fail.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/copy.fail.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/default.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/destructor.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/notify_all.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/notify_one.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait_pred.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait_until.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvar/wait_until_pred.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/assign.fail.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/copy.fail.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/default.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/destructor.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/notify_all.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/notify_one.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_for.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_for_pred.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_pred.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_terminates.sh.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_until.pass.cpp create mode 100644 test/std/thread/thread.condition/thread.condition.condvarany/wait_until_pred.pass.cpp create mode 100644 test/std/thread/thread.general/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock.algorithm/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock.algorithm/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/adopt_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.guard/types.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/adopt_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/types.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/lit.local.cfg create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/copy_assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/copy_ctor.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_assign.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/move_ctor.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_adopt_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_defer_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_duration.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_time_point.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/mutex_try_to_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/try_lock_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/unlock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/member_swap.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/nonmember_swap.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.mod/release.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/op_bool.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.obs/owns_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.shared/types.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/copy_assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/copy_ctor.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_assign.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/move_ctor.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_adopt_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_defer_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_duration.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_time_point.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/mutex_try_to_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/try_lock_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/try_lock_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/unlock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/member_swap.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/nonmember_swap.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/release.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.obs/mutex.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.obs/op_bool.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.obs/owns_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/thread.lock.unique/types.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.lock/types.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.general/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/lit.local.cfg create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/lock_shared.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/try_lock_shared.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/lit.local.cfg create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/lock_shared.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_shared.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_shared_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_shared_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/try_lock_until_deadlock_bug.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/try_lock_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/try_lock_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/default.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/try_lock.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/try_lock_for.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/try_lock_until.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/thread.once.callonce/call_once.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/thread.once.callonce/race.pass.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/thread.once.onceflag/assign.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/thread.once.onceflag/copy.fail.cpp create mode 100644 test/std/thread/thread.mutex/thread.once/thread.once.onceflag/default.pass.cpp create mode 100644 test/std/thread/thread.req/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.exception/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.lockable/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.lockable/thread.req.lockable.basic/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.lockable/thread.req.lockable.general/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.lockable/thread.req.lockable.req/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.lockable/thread.req.lockable.timed/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.native/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.paramname/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.req/thread.req.timing/nothing_to_do.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/copy.fail.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/move.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/move2.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/F.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/constr.fail.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/copy.fail.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/default.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/move.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.destr/dtor.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/assign.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/copy.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/default.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/enabled_hashes.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/eq.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/lt.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/stream.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.id/thread_id.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.member/detach.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.member/get_id.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.member/join.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.member/joinable.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.member/swap.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.class/thread.thread.static/hardware_concurrency.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.this/get_id.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.this/sleep_for_tested_elsewhere.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.this/sleep_until.pass.cpp create mode 100644 test/std/thread/thread.threads/thread.thread.this/yield.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/allocs.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/converting_copy.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/converting_move.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/copy.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/default.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/allocate_size.fail.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/allocate_size.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/allocate_size_hint.fail.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/allocate_size_hint.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_const_lvalue_pair.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_piecewise.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_rvalue.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_pair_values.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/construct_type.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/deallocate.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/destroy.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/inner_allocator.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/max_size.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/outer_allocator.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.members/select_on_container_copy_construction.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/allocator_pointers.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/inner_allocator_type.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/is_always_equal.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_copy_assignment.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_move_assignment.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_swap.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/scoped.adaptor.operators/copy_assign.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/scoped.adaptor.operators/eq.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/scoped.adaptor.operators/move_assign.pass.cpp create mode 100644 test/std/utilities/allocator.adaptor/types.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.assign/copy.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.assign/move.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.assign/value.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.cons/copy.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.cons/default.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.cons/in_place_type.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.cons/move.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.cons/value.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.modifiers/emplace.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.modifiers/reset.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.modifiers/swap.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.observers/has_value.pass.cpp create mode 100644 test/std/utilities/any/any.class/any.observers/type.pass.cpp create mode 100644 test/std/utilities/any/any.class/not_literal_type.pass.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/any_cast_pointer.pass.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/any_cast_reference.pass.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/any_cast_request_invalid_value_category.fail.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/const_correctness.fail.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/not_copy_constructible.fail.cpp create mode 100644 test/std/utilities/any/any.nonmembers/any.cast/reference_types.fail.cpp create mode 100644 test/std/utilities/any/any.nonmembers/make_any.pass.cpp create mode 100644 test/std/utilities/any/any.nonmembers/swap.pass.cpp create mode 100644 test/std/utilities/charconv/charconv.from.chars/integral.bool.fail.cpp create mode 100644 test/std/utilities/charconv/charconv.from.chars/integral.pass.cpp create mode 100644 test/std/utilities/charconv/charconv.to.chars/integral.bool.fail.cpp create mode 100644 test/std/utilities/charconv/charconv.to.chars/integral.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/divides.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/minus.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/modulus.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/multiplies.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/negate.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/plus.pass.cpp create mode 100644 test/std/utilities/function.objects/arithmetic.operations/transparent.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/PR23141_invoke_not_constexpr.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/bind_return_type.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/copy.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/invoke_function_object.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/invoke_int_0.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/invoke_lvalue.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/invoke_rvalue.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/invoke_void_0.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.bind/nested.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/is_bind_expression.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/is_bind_expression_03.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/is_placeholder.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/func.bind.place/placeholders.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/func.bind/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/function.objects/bind/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/function.objects/bitwise.operations/bit_and.pass.cpp create mode 100644 test/std/utilities/function.objects/bitwise.operations/bit_not.pass.cpp create mode 100644 test/std/utilities/function.objects/bitwise.operations/bit_or.pass.cpp create mode 100644 test/std/utilities/function.objects/bitwise.operations/bit_xor.pass.cpp create mode 100644 test/std/utilities/function.objects/bitwise.operations/transparent.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/constexpr_init.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/equal_to.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/greater.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/greater_equal.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/less.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/less_equal.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/not_equal_to.pass.cpp create mode 100644 test/std/utilities/function.objects/comparisons/pointer_comparison_test_helper.hpp create mode 100644 test/std/utilities/function.objects/comparisons/transparent.pass.cpp create mode 100644 test/std/utilities/function.objects/func.def/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/function.objects/func.invoke/invoke.pass.cpp create mode 100644 test/std/utilities/function.objects/func.invoke/invoke_feature_test_macro.pass.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_data.fail.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_data.pass.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_function.pass.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_function_const.pass.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_function_const_volatile.pass.cpp create mode 100644 test/std/utilities/function.objects/func.memfn/member_function_volatile.pass.cpp create mode 100644 test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp create mode 100644 test/std/utilities/function.objects/func.require/INVOKE_tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/function.objects/func.require/binary_function.pass.cpp create mode 100644 test/std/utilities/function.objects/func.require/unary_function.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bm/default.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bm/hash.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bm/hash.pred.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bm/pred.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bmh/default.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bmh/hash.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bmh/hash.pred.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.bmh/pred.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.default/default.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/func.search.default/default.pred.pass.cpp create mode 100644 test/std/utilities/function.objects/func.search/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.badcall/bad_function_call.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.badcall/func.wrap.badcall.const/bad_function_call_ctor.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/derive_from.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/derive_from.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/swap.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.cap/operator_bool.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_assign.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_incomplete.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/F_nullptr.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_F.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_function.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_nullptr.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_nullptr.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/alloc_rfunction.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_assign.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/default.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/move_reentrant.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/nullptr_t_assign_reentrant.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/invoke.fail.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/invoke.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/assign_F_alloc.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/swap.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.nullptr/operator_==.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/target.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.targ/target_type.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h create mode 100644 test/std/utilities/function.objects/func.wrap/func.wrap.func/types.pass.cpp create mode 100644 test/std/utilities/function.objects/func.wrap/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/function.objects/logical.operations/logical_and.pass.cpp create mode 100644 test/std/utilities/function.objects/logical.operations/logical_not.pass.cpp create mode 100644 test/std/utilities/function.objects/logical.operations/logical_or.pass.cpp create mode 100644 test/std/utilities/function.objects/logical.operations/transparent.pass.cpp create mode 100644 test/std/utilities/function.objects/negators/binary_negate.pass.cpp create mode 100644 test/std/utilities/function.objects/negators/not1.pass.cpp create mode 100644 test/std/utilities/function.objects/negators/not2.pass.cpp create mode 100644 test/std/utilities/function.objects/negators/unary_negate.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.access/conversion.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.assign/copy_assign.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.const/copy_ctor.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.const/type_ctor.fail.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.const/type_ctor.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.helpers/cref_1.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.helpers/cref_2.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_1.fail.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_1.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.invoke/invoke.fail.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.invoke/invoke.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.invoke/invoke_int_0.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/refwrap.invoke/invoke_void_0.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/type.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/type_properties.pass.cpp create mode 100644 test/std/utilities/function.objects/refwrap/weak_result.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/enabled_hashes.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/enum.fail.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/enum.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/floating.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/integral.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/non_enum.pass.cpp create mode 100644 test/std/utilities/function.objects/unord.hash/pointer.pass.cpp create mode 100644 test/std/utilities/intseq/intseq.general/integer_seq.pass.cpp create mode 100644 test/std/utilities/intseq/intseq.intseq/integer_seq.fail.cpp create mode 100644 test/std/utilities/intseq/intseq.intseq/integer_seq.pass.cpp create mode 100644 test/std/utilities/intseq/intseq.make/make_integer_seq.fail.cpp create mode 100644 test/std/utilities/intseq/intseq.make/make_integer_seq.pass.cpp create mode 100644 test/std/utilities/intseq/intseq.make/make_integer_seq_fallback.fail.cpp create mode 100644 test/std/utilities/intseq/intseq.make/make_integer_seq_fallback.pass.cpp create mode 100644 test/std/utilities/intseq/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/memory/allocator.tag/allocator_arg.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/allocate.fail.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/allocate.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/allocate_hint.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/construct.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/deallocate.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/destroy.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/incomplete_type_helper.h create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/max_size.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.members/select_on_container_copy_construction.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/const_pointer.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/const_void_pointer.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/difference_type.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/is_always_equal.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/pointer.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/propagate_on_container_copy_assignment.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/propagate_on_container_move_assignment.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/propagate_on_container_swap.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/rebind_alloc.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/size_type.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator.traits.types/void_pointer.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/allocator_type.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/rebind_traits.pass.cpp create mode 100644 test/std/utilities/memory/allocator.traits/value_type.pass.cpp create mode 100644 test/std/utilities/memory/allocator.uses/allocator.uses.construction/tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/memory/allocator.uses/allocator.uses.trait/uses_allocator.pass.cpp create mode 100644 test/std/utilities/memory/allocator.uses/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/memory/c.malloc/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.ctor.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.globals/eq.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/address.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/allocate.fail.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/allocate.size.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/construct.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator.members/max_size.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator_pointers.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator_types.pass.cpp create mode 100644 test/std/utilities/memory/default.allocator/allocator_void.pass.cpp create mode 100644 test/std/utilities/memory/pointer.conversion/to_address.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/difference_type.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/element_type.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer.traits.functions/pointer_to.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer.traits.types/difference_type.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer.traits.types/element_type.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer.traits.types/rebind.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/pointer_to.pass.cpp create mode 100644 test/std/utilities/memory/pointer.traits/rebind.pass.cpp create mode 100644 test/std/utilities/memory/ptr.align/align.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.addressof/addressof.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.addressof/addressof.temp.fail.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.addressof/constexpr_addressof.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.destroy/destroy.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.destroy/destroy_at.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/specialized.destroy/destroy_n.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/uninitialized_default_construct.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/uninitialized_default_construct_n.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/uninitialized_value_construct.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/uninitialized_value_construct_n.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy_n.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/uninitialized_fill_n.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.fill/uninitialized_fill.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.move/uninitialized_move.pass.cpp create mode 100644 test/std/utilities/memory/specialized.algorithms/uninitialized.move/uninitialized_move_n.pass.cpp create mode 100644 test/std/utilities/memory/storage.iterator/raw_storage_iterator.base.pass.cpp create mode 100644 test/std/utilities/memory/storage.iterator/raw_storage_iterator.pass.cpp create mode 100644 test/std/utilities/memory/temporary.buffer/overaligned.pass.cpp create mode 100644 test/std/utilities/memory/temporary.buffer/temporary_buffer.pass.cpp create mode 100644 test/std/utilities/memory/unique.ptr/unique.ptr.special/io.fail.cpp create mode 100644 test/std/utilities/memory/unique.ptr/unique.ptr.special/io.pass.cpp create mode 100644 test/std/utilities/memory/util.dynamic.safety/declare_no_pointers.pass.cpp create mode 100644 test/std/utilities/memory/util.dynamic.safety/declare_reachable.pass.cpp create mode 100644 test/std/utilities/memory/util.dynamic.safety/get_pointer_safety.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.hash/enabled_hash.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_shared_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.hash/hash_unique_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_strong.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_strong_explicit.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_weak.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_compare_exchange_weak_explicit.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_exchange.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_exchange_explicit.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_is_lock_free.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_load.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_load_explicit.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_store.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/atomic_store_explicit.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/types.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.getdeleter/get_deleter.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/auto_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_Y_rv.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/shared_ptr_rv.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.assign/unique_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/const_pointer_cast.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/dynamic_pointer_cast.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cast/static_pointer_cast.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/cmp_nullptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/eq.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/lt.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/default.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_allocator.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_allocator_throw.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_allocator.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_allocator_throw.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr_Y_rv.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr_pointer.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/shared_ptr_rv.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/weak_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/allocate_shared.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/allocate_shared_cxx03.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.private.fail.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.protected.fail.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.volatile.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.dest/tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.io/io.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_pointer.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_pointer_deleter.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/reset_pointer_deleter_allocator.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.mod/swap.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/arrow.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/dereference.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/op_bool.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_before_shared_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/owner_before_weak_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.obs/unique.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.spec/swap.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/types.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/owner_less.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/shared_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/weak_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.assign/weak_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/default.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/shared_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/weak_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/weak_ptr_Y.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.dest/tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/reset.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.mod/swap.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/expired.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/lock.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/not_less_than.fail.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/owner_before_shared_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/owner_before_weak_ptr.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.spec/swap.pass.cpp create mode 100644 test/std/utilities/memory/util.smartptr/util.smartptr.weakptr/bad_weak_ptr.pass.cpp create mode 100644 test/std/utilities/meta/meta.help/bool_constant.pass.cpp create mode 100644 test/std/utilities/meta/meta.help/integral_constant.pass.cpp create mode 100644 test/std/utilities/meta/meta.logical/conjunction.pass.cpp create mode 100644 test/std/utilities/meta/meta.logical/disjunction.pass.cpp create mode 100644 test/std/utilities/meta/meta.logical/negation.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_base_of.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_convertible.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_convertible_fallback.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_invocable.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_nothrow_invocable.pass.cpp create mode 100644 test/std/utilities/meta/meta.rel/is_same.pass.cpp create mode 100644 test/std/utilities/meta/meta.rqmts/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.arr/remove_all_extents.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.arr/remove_extent.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/add_const.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/add_cv.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/add_volatile.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/remove_const.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/remove_cv.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.cv/remove_volatile.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/aligned_storage.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/aligned_union.fail.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/aligned_union.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/conditional.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/decay.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/enable_if.fail.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/enable_if.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/enable_if2.fail.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/remove_cvref.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/result_of.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.other/underlying_type.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.ptr/add_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.ptr/remove_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.ref/add_lvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.ref/add_rvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.ref/remove_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.sign/make_signed.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/meta.trans.sign/make_unsigned.pass.cpp create mode 100644 test/std/utilities/meta/meta.trans/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/meta/meta.type.synop/endian.pass.cpp create mode 100644 test/std/utilities/meta/meta.type.synop/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary.prop.query/alignment_of.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary.prop.query/extent.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary.prop.query/rank.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary.prop.query/void_t.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary.prop.query/void_t_feature_test_macro.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/array.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/class.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/enum.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/floating_point.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/function.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/integral.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_array.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_class.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_enum.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_floating_point.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_function.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_integral.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_lvalue_reference.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_member_object_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_member_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_null_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_rvalue_reference.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_union.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/is_void.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/lvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/member_function_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/member_function_pointer_no_variadics.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/member_object_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/nullptr.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/rvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/union.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/array.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/class.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/enum.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/floating_point.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/function.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/integral.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_arithmetic.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_compound.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_fundamental.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_member_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_object.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_reference.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/is_scalar.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/lvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/member_function_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/member_object_pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/pointer.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/rvalue_ref.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/union.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.comp/void.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/has_unique_object_representations.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/has_virtual_destructor.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_abstract.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_aggregate.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_const.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_copy_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_copy_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_default_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_destructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_empty.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_final.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_literal_type.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_move_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_move_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_copy_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_copy_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_default_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_destructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_move_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_move_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_swappable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_nothrow_swappable_with.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_pod.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_polymorphic.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_signed.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_standard_layout.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_include_order.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_swappable_with.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivial.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_copy_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_copy_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_copyable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_default_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_destructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_move_assignable.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_trivially_move_constructible.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_unsigned.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/meta.unary.prop/is_volatile.pass.cpp create mode 100644 test/std/utilities/meta/meta.unary/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/optional/optional.bad_optional_access/default.pass.cpp create mode 100644 test/std/utilities/optional/optional.bad_optional_access/derive.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/greater.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/greater_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/less_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/less_than.pass.cpp create mode 100644 test/std/utilities/optional/optional.comp_with_t/not_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.hash/enabled_hash.pass.cpp create mode 100644 test/std/utilities/optional/optional.hash/hash.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/greater.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/greater_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/less_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/less_than.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullops/not_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.nullopt/nullopt_t.fail.cpp create mode 100644 test/std/utilities/optional/optional.nullopt/nullopt_t.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/assign_value.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/const_optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/copy.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/emplace.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/emplace_initializer_list.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/move.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/nullopt_t.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.assign/optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/const_T.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/const_optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/copy.fail.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/copy.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/deduct.fail.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/deduct.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/default.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/explicit_const_optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/explicit_optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/in_place_t.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/initializer_list.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/move.fail.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/move.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/nullopt_t.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/optional_U.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.ctor/rvalue_T.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.dtor/dtor.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.mod/reset.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/bool.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/dereference.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/dereference_const.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/dereference_const_rvalue.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/dereference_rvalue.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/has_value.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/op_arrow.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/op_arrow_const.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_const.fail.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_const.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_const_rvalue.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_or.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_or_const.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.observe/value_rvalue.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional.object.swap/swap.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/optional_requires_destructible_object.fail.cpp create mode 100644 test/std/utilities/optional/optional.object/special_member_gen.pass.cpp create mode 100644 test/std/utilities/optional/optional.object/types.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/greater_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/greater_than.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/less_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/less_than.pass.cpp create mode 100644 test/std/utilities/optional/optional.relops/not_equal.pass.cpp create mode 100644 test/std/utilities/optional/optional.specalg/make_optional.pass.cpp create mode 100644 test/std/utilities/optional/optional.specalg/make_optional_explicit.pass.cpp create mode 100644 test/std/utilities/optional/optional.specalg/make_optional_explicit_initializer_list.pass.cpp create mode 100644 test/std/utilities/optional/optional.specalg/swap.pass.cpp create mode 100644 test/std/utilities/optional/optional.syn/optional_in_place_t.fail.cpp create mode 100644 test/std/utilities/optional/optional.syn/optional_includes_initializer_list.pass.cpp create mode 100644 test/std/utilities/optional/optional.syn/optional_nullopt_t.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_add.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_add.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_divide.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_divide.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_multiply.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_multiply.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_subtract.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.arithmetic/ratio_subtract.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_equal.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_greater.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_greater_equal.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_less.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_less_equal.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.comparison/ratio_not_equal.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.ratio/ratio.pass.cpp create mode 100644 test/std/utilities/ratio/ratio.ratio/ratio1.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.ratio/ratio2.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.ratio/ratio3.fail.cpp create mode 100644 test/std/utilities/ratio/ratio.si/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/ratio/typedefs.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/README.TXT create mode 100644 test/std/utilities/smartptr/unique.ptr/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/pointer_type.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/move.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/move_convert.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/move_convert.runtime.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/move_convert.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/null.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/nullptr.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/auto_pointer.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/default.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/move.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/move_convert.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/move_convert.runtime.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/move_convert.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/null.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/nullptr.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/pointer.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/pointer_deleter.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/pointer_deleter.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.dtor/null.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/release.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/reset.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/reset.runtime.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/reset.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/reset_self.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.modifiers/swap.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/dereference.runtime.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/dereference.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/explicit_bool.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/get.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/get_deleter.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/op_arrow.runtime.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/op_arrow.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/op_subscript.runtime.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/op_subscript.single.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.array.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.array1.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.array2.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.array3.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.array4.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.create/make_unique.single.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/convert_ctor.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/default.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/incomplete.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/void.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/convert_ctor.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/convert_ctor.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/default.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt1/incomplete.fail.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.general/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.special/cmp_nullptr.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.special/eq.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.special/rel.pass.cpp create mode 100644 test/std/utilities/smartptr/unique.ptr/unique.ptr.special/swap.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.cons/char_ptr_ctor.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.cons/default.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.cons/string_ctor.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.cons/ull_ctor.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.hash/bitset.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.hash/enabled_hash.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/all.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/any.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/count.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/flip_all.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/flip_one.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/index.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/index_const.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/left_shift.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/left_shift_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/none.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/not_all.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/op_and_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/op_eq_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/op_or_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/op_xor_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/reset_all.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/reset_one.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/right_shift.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/set_all.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/set_one.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/size.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/test.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/to_string.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/to_ullong.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.members/to_ulong.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.operators/op_and.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.operators/op_not.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.operators/op_or.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.operators/stream_in.pass.cpp create mode 100644 test/std/utilities/template.bitset/bitset.operators/stream_out.pass.cpp create mode 100644 test/std/utilities/template.bitset/includes.pass.cpp create mode 100644 test/std/utilities/time/clock.h create mode 100644 test/std/utilities/time/date.time/ctime.pass.cpp create mode 100644 test/std/utilities/time/hours.pass.cpp create mode 100644 test/std/utilities/time/microseconds.pass.cpp create mode 100644 test/std/utilities/time/milliseconds.pass.cpp create mode 100644 test/std/utilities/time/minutes.pass.cpp create mode 100644 test/std/utilities/time/nanoseconds.pass.cpp create mode 100644 test/std/utilities/time/rep.h create mode 100644 test/std/utilities/time/seconds.pass.cpp create mode 100644 test/std/utilities/time/time.clock.req/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/time/time.clock/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.hires/consistency.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.hires/now.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.steady/consistency.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.steady/now.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.system/consistency.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.system/from_time_t.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.system/now.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.system/rep_signed.pass.cpp create mode 100644 test/std/utilities/time/time.clock/time.clock.system/to_time_t.pass.cpp create mode 100644 test/std/utilities/time/time.duration/default_ratio.pass.cpp create mode 100644 test/std/utilities/time/time.duration/duration.fail.cpp create mode 100644 test/std/utilities/time/time.duration/positive_num.fail.cpp create mode 100644 test/std/utilities/time/time.duration/ratio.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.alg/abs.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.alg/abs.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_++.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_++int.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_+.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_+=.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_--.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_--int.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_-.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_-=.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_divide=.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_mod=duration.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_mod=rep.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.arithmetic/op_times=.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/ceil.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/ceil.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/duration_cast.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/floor.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/floor.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/round.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/round.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cast/toduration.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.comparisons/op_equal.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.comparisons/op_less.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_exact.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_float_to_int.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_inexact.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_inexact.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_int_to_float.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/convert_overflow.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/default.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/rep.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/rep01.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/rep02.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/rep02.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.cons/rep03.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.literals/literals.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.literals/literals1.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.literals/literals1.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.literals/literals2.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.literals/literals2.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_+.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_-.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_divide_duration.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_divide_rep.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_divide_rep.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_mod_duration.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_mod_rep.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_mod_rep.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_times_rep.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_times_rep1.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.nonmember/op_times_rep2.fail.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.observer/tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.special/max.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.special/min.pass.cpp create mode 100644 test/std/utilities/time/time.duration/time.duration.special/zero.pass.cpp create mode 100644 test/std/utilities/time/time.duration/types.pass.cpp create mode 100644 test/std/utilities/time/time.point/default_duration.pass.cpp create mode 100644 test/std/utilities/time/time.point/duration.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.arithmetic/op_+=.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.arithmetic/op_-=.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/ceil.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/ceil.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/floor.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/floor.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/round.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/round.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/time_point_cast.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cast/toduration.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.comparisons/op_equal.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.comparisons/op_equal.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.comparisons/op_less.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.comparisons/op_less.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cons/convert.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cons/convert.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cons/default.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cons/duration.fail.cpp create mode 100644 test/std/utilities/time/time.point/time.point.cons/duration.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.nonmember/op_+.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.nonmember/op_-duration.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.nonmember/op_-time_point.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.observer/tested_elsewhere.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.special/max.pass.cpp create mode 100644 test/std/utilities/time/time.point/time.point.special/min.pass.cpp create mode 100644 test/std/utilities/time/time.traits/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.duration_values/max.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.duration_values/min.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.duration_values/zero.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.is_fp/treat_as_floating_point.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.specializations/duration.pass.cpp create mode 100644 test/std/utilities/time/time.traits/time.traits.specializations/time_point.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.general/ignore.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.general/tuple.smartptr.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/TupleFunction.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/alloc_first.h create mode 100644 test/std/utilities/tuple/tuple.tuple/alloc_last.h create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.apply/apply.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.apply/apply_extended_types.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.apply/apply_large_arity.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/const_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/convert_copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/convert_move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/copy.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/move_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.assign/tuple_array_template_depth.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR20855_tuple_ref_binding_diagnostics.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR22806_constrain_tuple_like_ctor.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR23256_constrain_UTypes_ctor.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR27684_contains_ref_to_incomplete_type.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR31384.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/UTypes.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_UTypes.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_const_Types.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_const_Types.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_const_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_convert_move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/alloc_move_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/const_Types.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/const_Types.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/const_Types2.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/const_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/convert_copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/convert_move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/copy.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/copy.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/default.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/dtor.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/implicit_deduction_guides.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/move.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/move_pair.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/test_lazy_sfinae.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.cnstr/tuple_array_template_depth.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.creation/make_tuple.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.creation/tie.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.creation/tuple_cat.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_const_rv.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_non_const.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/get_rv.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple.include.array.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple.include.utility.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_element.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_element.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_incomplete.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_structured_bindings.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_v.fail.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_v.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.helper/tuple_size_value_sfinae.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.rel/eq.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.rel/lt.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.special/non_member_swap.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.swap/member_swap.pass.cpp create mode 100644 test/std/utilities/tuple/tuple.tuple/tuple.traits/uses_allocator.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.hash/enabled_hash.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.hash/hash.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.members/ctor.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.members/eq.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.members/hash_code.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.members/lt.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.members/name.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.overview/copy_assign.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.overview/copy_ctor.pass.cpp create mode 100644 test/std/utilities/type.index/type.index.synopsis/hash_type_index.pass.cpp create mode 100644 test/std/utilities/utilities.general/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/allocator.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/hash.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/nullablepointer.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/swappable.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility.requirements/utility.arg.requirements/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility/as_const/as_const.fail.cpp create mode 100644 test/std/utilities/utility/as_const/as_const.pass.cpp create mode 100644 test/std/utilities/utility/declval/declval.pass.cpp create mode 100644 test/std/utilities/utility/exchange/exchange.pass.cpp create mode 100644 test/std/utilities/utility/forward/forward.fail.cpp create mode 100644 test/std/utilities/utility/forward/forward.pass.cpp create mode 100644 test/std/utilities/utility/forward/forward_03.pass.cpp create mode 100644 test/std/utilities/utility/forward/move.fail.cpp create mode 100644 test/std/utilities/utility/forward/move.pass.cpp create mode 100644 test/std/utilities/utility/forward/move_if_noexcept.pass.cpp create mode 100644 test/std/utilities/utility/operators/rel_ops.pass.cpp create mode 100644 test/std/utilities/utility/pairs/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/get_const.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/get_const.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/get_const_rv.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/get_non_const.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/get_rv.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/pairs.by.type.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/pairs.by.type1.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/pairs.by.type2.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/pairs.by.type3.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/tuple_element.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/tuple_element.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.astuple/tuple_size.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pair.piecewise/piecewise_construct.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.general/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/U_V.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_const_pair_U_V.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_pair.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_pair_cxx03.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/assign_rv_pair_U_V.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/const_first_const_second.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/const_first_const_second_cxx03.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/const_pair_U_V_cxx03.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/copy_ctor.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/default-sfinae.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/default.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/dtor.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/implicit_deduction_guides.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/move_ctor.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/not_constexpr_cxx11.fail.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/piecewise.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/rv_pair_U_V.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/special_member_generation_test.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/swap.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/trivial_copy_move.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.pair/types.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.spec/comparison.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.spec/make_pair.pass.cpp create mode 100644 test/std/utilities/utility/pairs/pairs.spec/non_member_swap.pass.cpp create mode 100644 test/std/utilities/utility/synopsis.pass.cpp create mode 100644 test/std/utilities/utility/utility.inplace/inplace.pass.cpp create mode 100644 test/std/utilities/utility/utility.swap/swap.pass.cpp create mode 100644 test/std/utilities/utility/utility.swap/swap_array.pass.cpp create mode 100644 test/std/utilities/variant/variant.bad_variant_access/bad_variant_access.pass.cpp create mode 100644 test/std/utilities/variant/variant.general/nothing_to_do.pass.cpp create mode 100644 test/std/utilities/variant/variant.get/get_if_index.pass.cpp create mode 100644 test/std/utilities/variant/variant.get/get_if_type.pass.cpp create mode 100644 test/std/utilities/variant/variant.get/get_index.pass.cpp create mode 100644 test/std/utilities/variant/variant.get/get_type.pass.cpp create mode 100644 test/std/utilities/variant/variant.get/holds_alternative.pass.cpp create mode 100644 test/std/utilities/variant/variant.hash/enabled_hash.pass.cpp create mode 100644 test/std/utilities/variant/variant.hash/hash.pass.cpp create mode 100644 test/std/utilities/variant/variant.helpers/variant_alternative.fail.cpp create mode 100644 test/std/utilities/variant/variant.helpers/variant_alternative.pass.cpp create mode 100644 test/std/utilities/variant/variant.helpers/variant_size.pass.cpp create mode 100644 test/std/utilities/variant/variant.monostate.relops/relops.pass.cpp create mode 100644 test/std/utilities/variant/variant.monostate/monostate.pass.cpp create mode 100644 test/std/utilities/variant/variant.relops/relops.pass.cpp create mode 100644 test/std/utilities/variant/variant.synopsis/variant_npos.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.assign/T.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.assign/copy.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.assign/move.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/T.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/copy.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/default.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/in_place_index_init_list_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/in_place_type_init_list_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.ctor/move.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.dtor/dtor.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.mod/emplace_index_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.mod/emplace_index_init_list_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.mod/emplace_type_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.mod/emplace_type_init_list_args.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.status/index.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.status/valueless_by_exception.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant.swap/swap.pass.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant_array.fail.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant_empty.fail.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant_reference.fail.cpp create mode 100644 test/std/utilities/variant/variant.variant/variant_void.fail.cpp create mode 100644 test/std/utilities/variant/variant.visit/visit.pass.cpp create mode 100644 test/support/Counter.h create mode 100644 test/support/DefaultOnly.h create mode 100644 test/support/MoveOnly.h create mode 100644 test/support/allocators.h create mode 100644 test/support/any_helpers.h create mode 100644 test/support/archetypes.hpp create mode 100644 test/support/archetypes.ipp create mode 100644 test/support/asan_testing.h create mode 100644 test/support/assert_checkpoint.h create mode 100644 test/support/charconv_test_helpers.h create mode 100644 test/support/cmpxchg_loop.h create mode 100644 test/support/constexpr_char_traits.hpp create mode 100644 test/support/container_test_types.h create mode 100644 test/support/controlled_allocators.hpp create mode 100644 test/support/coroutine_types.h create mode 100644 test/support/count_new.hpp create mode 100644 test/support/counting_predicates.hpp create mode 100644 test/support/debug_mode_helper.h create mode 100644 test/support/deleter_types.h create mode 100644 test/support/demangle.h create mode 100644 test/support/disable_missing_braces_warning.h create mode 100644 test/support/emplace_constructible.h create mode 100644 test/support/experimental_any_helpers.h create mode 100644 test/support/external_threads.cpp create mode 100644 test/support/filesystem_dynamic_test_helper.py create mode 100644 test/support/filesystem_include.hpp create mode 100644 test/support/filesystem_test_helper.hpp create mode 100644 test/support/format_string.hpp create mode 100644 test/support/hexfloat.h create mode 100644 test/support/is_transparent.h create mode 100644 test/support/min_allocator.h create mode 100644 test/support/msvc_stdlib_force_include.hpp create mode 100644 test/support/nasty_containers.hpp create mode 100644 test/support/nasty_macros.hpp create mode 100644 test/support/nothing_to_do.pass.cpp create mode 100644 test/support/platform_support.h create mode 100644 test/support/poisoned_hash_helper.hpp create mode 100644 test/support/private_constructor.hpp create mode 100644 test/support/propagate_const_helpers.h create mode 100644 test/support/rapid-cxx-test.hpp create mode 100644 test/support/set_windows_crt_report_mode.h create mode 100644 test/support/test.support/test_convertible_header.pass.cpp create mode 100644 test/support/test.support/test_demangle.pass.cpp create mode 100644 test/support/test.support/test_macros_header_exceptions.fail.cpp create mode 100644 test/support/test.support/test_macros_header_exceptions.pass.cpp create mode 100644 test/support/test.support/test_macros_header_rtti.fail.cpp create mode 100644 test/support/test.support/test_macros_header_rtti.pass.cpp create mode 100644 test/support/test.support/test_poisoned_hash_helper.pass.cpp create mode 100644 test/support/test.workarounds/c1xx_broken_is_trivially_copyable.pass.cpp create mode 100644 test/support/test.workarounds/c1xx_broken_za_ctor_check.pass.cpp create mode 100644 test/support/test_allocator.h create mode 100644 test/support/test_comparisons.h create mode 100644 test/support/test_convertible.hpp create mode 100644 test/support/test_iterators.h create mode 100644 test/support/test_macros.h create mode 100644 test/support/test_memory_resource.hpp create mode 100644 test/support/test_workarounds.h create mode 100644 test/support/tracked_value.h create mode 100644 test/support/type_id.h create mode 100644 test/support/unique_ptr_test_helper.h create mode 100644 test/support/user_defined_integral.hpp create mode 100644 test/support/uses_alloc_types.hpp create mode 100644 test/support/variant_test_helpers.hpp create mode 100644 test/support/verbose_assert.h create mode 100755 utils/cat_files.py create mode 100755 utils/gen_link_script.py create mode 100644 utils/google-benchmark/.gitignore create mode 100644 utils/google-benchmark/AUTHORS create mode 100644 utils/google-benchmark/CMakeLists.txt create mode 100644 utils/google-benchmark/CONTRIBUTING.md create mode 100644 utils/google-benchmark/CONTRIBUTORS create mode 100644 utils/google-benchmark/LICENSE create mode 100644 utils/google-benchmark/README.LLVM create mode 100644 utils/google-benchmark/README.md create mode 100644 utils/google-benchmark/cmake/AddCXXCompilerFlag.cmake create mode 100644 utils/google-benchmark/cmake/CXXFeatureCheck.cmake create mode 100644 utils/google-benchmark/cmake/Config.cmake.in create mode 100644 utils/google-benchmark/cmake/GetGitVersion.cmake create mode 100644 utils/google-benchmark/cmake/HandleGTest.cmake create mode 100644 utils/google-benchmark/cmake/benchmark.pc.in create mode 100644 utils/google-benchmark/cmake/gnu_posix_regex.cpp create mode 100644 utils/google-benchmark/cmake/llvm-toolchain.cmake create mode 100644 utils/google-benchmark/cmake/posix_regex.cpp create mode 100644 utils/google-benchmark/cmake/split_list.cmake create mode 100644 utils/google-benchmark/cmake/std_regex.cpp create mode 100644 utils/google-benchmark/cmake/steady_clock.cpp create mode 100644 utils/google-benchmark/cmake/thread_safety_attributes.cpp create mode 100644 utils/google-benchmark/docs/AssemblyTests.md create mode 100644 utils/google-benchmark/docs/tools.md create mode 100644 utils/google-benchmark/include/benchmark/benchmark.h create mode 100644 utils/google-benchmark/releasing.md create mode 100644 utils/google-benchmark/src/CMakeLists.txt create mode 100644 utils/google-benchmark/src/arraysize.h create mode 100644 utils/google-benchmark/src/benchmark.cc create mode 100644 utils/google-benchmark/src/benchmark_api_internal.h create mode 100644 utils/google-benchmark/src/benchmark_main.cc create mode 100644 utils/google-benchmark/src/benchmark_register.cc create mode 100644 utils/google-benchmark/src/benchmark_register.h create mode 100644 utils/google-benchmark/src/check.h create mode 100644 utils/google-benchmark/src/colorprint.cc create mode 100644 utils/google-benchmark/src/colorprint.h create mode 100644 utils/google-benchmark/src/commandlineflags.cc create mode 100644 utils/google-benchmark/src/commandlineflags.h create mode 100644 utils/google-benchmark/src/complexity.cc create mode 100644 utils/google-benchmark/src/complexity.h create mode 100644 utils/google-benchmark/src/console_reporter.cc create mode 100644 utils/google-benchmark/src/counter.cc create mode 100644 utils/google-benchmark/src/counter.h create mode 100644 utils/google-benchmark/src/csv_reporter.cc create mode 100644 utils/google-benchmark/src/cycleclock.h create mode 100644 utils/google-benchmark/src/internal_macros.h create mode 100644 utils/google-benchmark/src/json_reporter.cc create mode 100644 utils/google-benchmark/src/log.h create mode 100644 utils/google-benchmark/src/mutex.h create mode 100644 utils/google-benchmark/src/re.h create mode 100644 utils/google-benchmark/src/reporter.cc create mode 100644 utils/google-benchmark/src/sleep.cc create mode 100644 utils/google-benchmark/src/sleep.h create mode 100644 utils/google-benchmark/src/statistics.cc create mode 100644 utils/google-benchmark/src/statistics.h create mode 100644 utils/google-benchmark/src/string_util.cc create mode 100644 utils/google-benchmark/src/string_util.h create mode 100644 utils/google-benchmark/src/sysinfo.cc create mode 100644 utils/google-benchmark/src/thread_manager.h create mode 100644 utils/google-benchmark/src/thread_timer.h create mode 100644 utils/google-benchmark/src/timers.cc create mode 100644 utils/google-benchmark/src/timers.h create mode 100644 utils/google-benchmark/test/CMakeLists.txt create mode 100644 utils/google-benchmark/test/basic_test.cc create mode 100644 utils/google-benchmark/test/benchmark_gtest.cc create mode 100644 utils/google-benchmark/test/benchmark_test.cc create mode 100644 utils/google-benchmark/test/clobber_memory_assembly_test.cc create mode 100644 utils/google-benchmark/test/complexity_test.cc create mode 100644 utils/google-benchmark/test/cxx03_test.cc create mode 100644 utils/google-benchmark/test/diagnostics_test.cc create mode 100644 utils/google-benchmark/test/donotoptimize_assembly_test.cc create mode 100644 utils/google-benchmark/test/donotoptimize_test.cc create mode 100644 utils/google-benchmark/test/filter_test.cc create mode 100644 utils/google-benchmark/test/fixture_test.cc create mode 100644 utils/google-benchmark/test/link_main_test.cc create mode 100644 utils/google-benchmark/test/map_test.cc create mode 100644 utils/google-benchmark/test/multiple_ranges_test.cc create mode 100644 utils/google-benchmark/test/options_test.cc create mode 100644 utils/google-benchmark/test/output_test.h create mode 100644 utils/google-benchmark/test/output_test_helper.cc create mode 100644 utils/google-benchmark/test/register_benchmark_test.cc create mode 100644 utils/google-benchmark/test/reporter_output_test.cc create mode 100644 utils/google-benchmark/test/skip_with_error_test.cc create mode 100644 utils/google-benchmark/test/state_assembly_test.cc create mode 100644 utils/google-benchmark/test/statistics_gtest.cc create mode 100644 utils/google-benchmark/test/string_util_gtest.cc create mode 100644 utils/google-benchmark/test/templated_fixture_test.cc create mode 100644 utils/google-benchmark/test/user_counters_tabular_test.cc create mode 100644 utils/google-benchmark/test/user_counters_test.cc create mode 100755 utils/google-benchmark/tools/compare.py create mode 100755 utils/google-benchmark/tools/compare_bench.py create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test1_run1.json create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test1_run2.json create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test2_run.json create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test3_run0.json create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test3_run1.json create mode 100644 utils/google-benchmark/tools/gbench/__init__.py create mode 100644 utils/google-benchmark/tools/gbench/report.py create mode 100644 utils/google-benchmark/tools/gbench/util.py create mode 100755 utils/google-benchmark/tools/strip_asm.py create mode 100644 utils/libcxx/__init__.py create mode 100644 utils/libcxx/compiler.py create mode 100644 utils/libcxx/sym_check/__init__.py create mode 100644 utils/libcxx/sym_check/diff.py create mode 100644 utils/libcxx/sym_check/extract.py create mode 100644 utils/libcxx/sym_check/match.py create mode 100644 utils/libcxx/sym_check/util.py create mode 100644 utils/libcxx/test/__init__.py create mode 100644 utils/libcxx/test/config.py create mode 100644 utils/libcxx/test/executor.py create mode 100644 utils/libcxx/test/format.py create mode 100644 utils/libcxx/test/target_info.py create mode 100644 utils/libcxx/test/tracing.py create mode 100644 utils/libcxx/util.py create mode 100755 utils/merge_archives.py create mode 100644 utils/not.py create mode 100755 utils/sym_diff.py create mode 100755 utils/sym_extract.py create mode 100755 utils/sym_match.py create mode 100644 utils/symcheck-blacklists/linux_blacklist.txt create mode 100644 utils/symcheck-blacklists/osx_blacklist.txt diff --git a/.arcconfig b/.arcconfig new file mode 100644 index 000000000..b7486508b --- /dev/null +++ b/.arcconfig @@ -0,0 +1,4 @@ +{ + "repository.callsign" : "CXX", + "conduit_uri" : "https://reviews.llvm.org/" +} diff --git a/.clang-format b/.clang-format new file mode 100644 index 000000000..dd596813f --- /dev/null +++ b/.clang-format @@ -0,0 +1,13 @@ +BasedOnStyle: LLVM + +--- +Language: Cpp +Standard: Cpp03 + +AlwaysBreakTemplateDeclarations: true +PointerAlignment: Left + +# Disable formatting options which may break tests. +SortIncludes: false +ReflowComments: false +--- diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..49657ed81 --- /dev/null +++ b/.gitignore @@ -0,0 +1,61 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +#lib/ # We actually have things checked in to lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# MSVC libraries test harness +env.lst +keep.lst + +# Editor by-products +.vscode/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 000000000..acb49565c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,760 @@ +# See www/CMake.html for instructions on how to build libcxx with CMake. + +#=============================================================================== +# Setup Project +#=============================================================================== +cmake_minimum_required(VERSION 3.4.3) + +if(POLICY CMP0042) + cmake_policy(SET CMP0042 NEW) # Set MACOSX_RPATH=YES by default +endif() +if(POLICY CMP0022) + cmake_policy(SET CMP0022 NEW) # Required when interacting with LLVM and Clang +endif() +if(POLICY CMP0068) + cmake_policy(SET CMP0068 NEW) + set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON) +endif() + +# Add path for custom modules +set(CMAKE_MODULE_PATH + "${CMAKE_CURRENT_SOURCE_DIR}/cmake" + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules" + ${CMAKE_MODULE_PATH} + ) + +if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) + project(libcxx CXX C) + + set(PACKAGE_NAME libcxx) + set(PACKAGE_VERSION 7.0.0) + set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") + set(PACKAGE_BUGREPORT "llvm-bugs@lists.llvm.org") + + # Find the LLVM sources and simulate LLVM CMake options. + include(HandleOutOfTreeLLVM) +endif() + +if (LIBCXX_STANDALONE_BUILD) + include(FindPythonInterp) + if( NOT PYTHONINTERP_FOUND ) + message(WARNING "Failed to find python interpreter. " + "The libc++ test suite will be disabled.") + set(LLVM_INCLUDE_TESTS OFF) + endif() +endif() + +# Require out of source build. +include(MacroEnsureOutOfSourceBuild) +MACRO_ENSURE_OUT_OF_SOURCE_BUILD( + "${PROJECT_NAME} requires an out of source build. Please create a separate + build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there." + ) + +if (MSVC) + set(LIBCXX_TARGETING_MSVC ON) +else() + set(LIBCXX_TARGETING_MSVC OFF) +endif() + +#=============================================================================== +# Setup CMake Options +#=============================================================================== +include(CMakeDependentOption) +include(HandleCompilerRT) + +# Basic options --------------------------------------------------------------- +option(LIBCXX_ENABLE_ASSERTIONS "Enable assertions independent of build mode." OFF) +option(LIBCXX_ENABLE_SHARED "Build libc++ as a shared library." ON) +option(LIBCXX_ENABLE_STATIC "Build libc++ as a static library." ON) +option(LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY "Build libc++experimental.a" ON) +set(ENABLE_FILESYSTEM_DEFAULT ${LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY}) +if (WIN32) + set(ENABLE_FILESYSTEM_DEFAULT OFF) +endif() +option(LIBCXX_ENABLE_FILESYSTEM "Build filesystem as part of libc++fs.a" + ${ENABLE_FILESYSTEM_DEFAULT}) +option(LIBCXX_INCLUDE_TESTS "Build the libc++ tests." ${LLVM_INCLUDE_TESTS}) + +# Benchmark options ----------------------------------------------------------- +option(LIBCXX_INCLUDE_BENCHMARKS "Build the libc++ benchmarks and their dependancies" ON) +set(LIBCXX_BENCHMARK_NATIVE_STDLIB "" CACHE STRING + "Build the benchmarks against the specified native STL. + The value must be one of libc++/libstdc++") +set(LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN "" CACHE STRING + "Use alternate GCC toolchain when building the native benchmarks") + +if (LIBCXX_BENCHMARK_NATIVE_STDLIB) + if (NOT (LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libc++" + OR LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libstdc++")) + message(FATAL_ERROR "Invalid value for LIBCXX_BENCHMARK_NATIVE_STDLIB: " + "'${LIBCXX_BENCHMARK_NATIVE_STDLIB}'") + endif() +endif() + +option(LIBCXX_INCLUDE_DOCS "Build the libc++ documentation." ${LLVM_INCLUDE_DOCS}) +set(LIBCXX_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING + "Define suffix of library directory name (32/64)") +option(LIBCXX_INSTALL_HEADERS "Install the libc++ headers." ON) +option(LIBCXX_INSTALL_LIBRARY "Install the libc++ library." ON) +cmake_dependent_option(LIBCXX_INSTALL_STATIC_LIBRARY + "Install the static libc++ library." ON + "LIBCXX_ENABLE_STATIC;LIBCXX_INSTALL_LIBRARY" OFF) +cmake_dependent_option(LIBCXX_INSTALL_SHARED_LIBRARY + "Install the shared libc++ library." ON + "LIBCXX_ENABLE_SHARED;LIBCXX_INSTALL_LIBRARY" OFF) +option(LIBCXX_INSTALL_SUPPORT_HEADERS "Install libc++ support headers." ON) +cmake_dependent_option(LIBCXX_INSTALL_EXPERIMENTAL_LIBRARY + "Install libc++experimental.a" ON + "LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY;LIBCXX_INSTALL_LIBRARY" OFF) +cmake_dependent_option(LIBCXX_INSTALL_FILESYSTEM_LIBRARY + "Install libc++fs.a" ON + "LIBCXX_ENABLE_FILESYSTEM;LIBCXX_INSTALL_LIBRARY" OFF) + +if (FUCHSIA) + set(DEFAULT_ABI_VERSION 2) +else() + set(DEFAULT_ABI_VERSION 1) +endif() +set(LIBCXX_ABI_VERSION ${DEFAULT_ABI_VERSION} CACHE STRING "ABI version of libc++.") +option(LIBCXX_ABI_UNSTABLE "Unstable ABI of libc++." OFF) +option(LIBCXX_ABI_FORCE_ITANIUM "Ignore auto-detection and force use of the Itanium ABI.") +option(LIBCXX_ABI_FORCE_MICROSOFT "Ignore auto-detection and force use of the Microsoft ABI.") +option(LIBCXX_HIDE_FROM_ABI_PER_TU_BY_DEFAULT "Enable per TU ABI insulation by default. To be used by vendors." OFF) +set(LIBCXX_ABI_DEFINES "" CACHE STRING "A semicolon separated list of ABI macros to define in the site config header.") +option(LIBCXX_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF) + +if (NOT LIBCXX_ENABLE_SHARED AND NOT LIBCXX_ENABLE_STATIC) + message(FATAL_ERROR "libc++ must be built as either a shared or static library.") +endif() + +# ABI Library options --------------------------------------------------------- +set(LIBCXX_CXX_ABI "default" CACHE STRING + "Specify C++ ABI library to use.") +set(CXXABIS none default libcxxabi libcxxrt libstdc++ libsupc++ vcruntime) +set_property(CACHE LIBCXX_CXX_ABI PROPERTY STRINGS ;${CXXABIS}) + +# Setup the default options if LIBCXX_CXX_ABI is not specified. +if (LIBCXX_CXX_ABI STREQUAL "default") + find_path( + LIBCXX_LIBCXXABI_INCLUDES_INTERNAL + cxxabi.h + PATHS ${LLVM_MAIN_SRC_DIR}/projects/libcxxabi/include + ${LLVM_MAIN_SRC_DIR}/runtimes/libcxxabi/include + ${LLVM_MAIN_SRC_DIR}/../libcxxabi/include + NO_DEFAULT_PATH + NO_CMAKE_FIND_ROOT_PATH + ) + if (LIBCXX_TARGETING_MSVC) + # FIXME: Figure out how to configure the ABI library on Windows. + set(LIBCXX_CXX_ABI_LIBNAME "vcruntime") + elseif ((NOT LIBCXX_STANDALONE_BUILD OR HAVE_LIBCXXABI) AND + IS_DIRECTORY "${LIBCXX_LIBCXXABI_INCLUDES_INTERNAL}") + set(LIBCXX_CXX_ABI_LIBNAME "libcxxabi") + set(LIBCXX_CXX_ABI_INCLUDE_PATHS "${LIBCXX_LIBCXXABI_INCLUDES_INTERNAL}") + set(LIBCXX_CXX_ABI_INTREE 1) + elseif (APPLE) + set(LIBCXX_CXX_ABI_LIBNAME "libcxxabi") + set(LIBCXX_CXX_ABI_SYSTEM 1) + elseif (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") + set(LIBCXX_CXX_ABI_LIBNAME "libcxxrt") + set(LIBCXX_CXX_ABI_INCLUDE_PATHS "/usr/include/c++/v1") + else() + set(LIBCXX_CXX_ABI_LIBNAME "default") + endif() +else() + set(LIBCXX_CXX_ABI_LIBNAME "${LIBCXX_CXX_ABI}") +endif() + +# Use a static copy of the ABI library when linking libc++. This option +# cannot be used with LIBCXX_ENABLE_ABI_LINKER_SCRIPT. +option(LIBCXX_ENABLE_STATIC_ABI_LIBRARY "Statically link the ABI library" OFF) + +cmake_dependent_option(LIBCXX_STATICALLY_LINK_ABI_IN_STATIC_LIBRARY + "Statically link the ABI library to static library" ON + "LIBCXX_ENABLE_STATIC_ABI_LIBRARY;LIBCXX_ENABLE_STATIC" OFF) + +cmake_dependent_option(LIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY + "Statically link the ABI library to shared library" ON + "LIBCXX_ENABLE_STATIC_ABI_LIBRARY;LIBCXX_ENABLE_SHARED" OFF) + +# Generate and install a linker script inplace of libc++.so. The linker script +# will link libc++ to the correct ABI library. This option is on by default +# on UNIX platforms other than Apple unless 'LIBCXX_ENABLE_STATIC_ABI_LIBRARY' +# is on. This option is also disabled when the ABI library is not specified +# or is specified to be "none". +set(ENABLE_LINKER_SCRIPT_DEFAULT_VALUE OFF) +if (LLVM_HAVE_LINK_VERSION_SCRIPT AND NOT LIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY + AND NOT LIBCXX_CXX_ABI_LIBNAME STREQUAL "none" + AND NOT LIBCXX_CXX_ABI_LIBNAME STREQUAL "default" + AND PYTHONINTERP_FOUND + AND LIBCXX_ENABLE_SHARED) + set(ENABLE_LINKER_SCRIPT_DEFAULT_VALUE ON) +endif() + +option(LIBCXX_ENABLE_ABI_LINKER_SCRIPT + "Use and install a linker script for the given ABI library" + ${ENABLE_LINKER_SCRIPT_DEFAULT_VALUE}) + +set(ENABLE_NEW_DELETE_DEFAULT ON) +if (LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS) +# FIXME: This option should default to off. Unfortunatly GCC 4.9 fails to link +# programs due to undefined references to new/delete in libc++abi so to work +# around this libc++abi currently defaults LIBCXXABI_ENABLE_NEW_DELETE_DEFINITIONS +# to ON. Once the GCC bug has been worked around this option should be changed +# back to OFF. + set(ENABLE_NEW_DELETE_DEFAULT ON) +endif() + +option(LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS + "Build libc++ with definitions for operator new/delete. This option can + be used to disable the definitions when libc++abi is expected to provide + them" ${ENABLE_NEW_DELETE_DEFAULT}) + +# Build libc++abi with libunwind. We need this option to determine whether to +# link with libunwind or libgcc_s while running the test cases. +option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF) +option(LIBCXXABI_ENABLE_STATIC_UNWINDER "Statically link the LLVM unwinder." OFF) + +# Target options -------------------------------------------------------------- +option(LIBCXX_BUILD_32_BITS "Build 32 bit libc++." ${LLVM_BUILD_32_BITS}) +set(LIBCXX_SYSROOT "" CACHE STRING "Use alternate sysroot.") +set(LIBCXX_GCC_TOOLCHAIN "" CACHE STRING "Use alternate GCC toolchain.") + +# Feature options ------------------------------------------------------------- +option(LIBCXX_ENABLE_EXCEPTIONS "Use exceptions." ON) +option(LIBCXX_ENABLE_RTTI "Use run time type information." ON) +option(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE "Build libc++ with support for the global filesystem namespace." ON) +option(LIBCXX_ENABLE_STDIN "Build libc++ with support for stdin/std::cin." ON) +option(LIBCXX_ENABLE_STDOUT "Build libc++ with support for stdout/std::cout." ON) +option(LIBCXX_ENABLE_THREADS "Build libc++ with support for threads." ON) +option(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS "Build libc++ with support for thread-unsafe C functions" ON) +option(LIBCXX_ENABLE_MONOTONIC_CLOCK + "Build libc++ with support for a monotonic clock. + This option may only be set to OFF when LIBCXX_ENABLE_THREADS=OFF." ON) +option(LIBCXX_HAS_MUSL_LIBC "Build libc++ with support for the Musl C library" OFF) +option(LIBCXX_HAS_PTHREAD_API "Ignore auto-detection and force use of pthread API" OFF) +option(LIBCXX_HAS_WIN32_THREAD_API "Ignore auto-detection and force use of win32 thread API" OFF) +option(LIBCXX_HAS_EXTERNAL_THREAD_API + "Build libc++ with an externalized threading API. + This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON." OFF) +option(LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY + "Build libc++ with an externalized threading library. + This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON" OFF) + +# Misc options ---------------------------------------------------------------- +# FIXME: Turn -pedantic back ON. It is currently off because it warns +# about #include_next which is used everywhere. +option(LIBCXX_ENABLE_PEDANTIC "Compile with pedantic enabled." OFF) +option(LIBCXX_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF) +option(LIBCXX_DISABLE_MACRO_CONFLICT_WARNINGS "Disable #warnings about conflicting macros." OFF) + +option(LIBCXX_GENERATE_COVERAGE "Enable generating code coverage." OFF) +set(LIBCXX_COVERAGE_LIBRARY "" CACHE STRING + "The Profile-rt library used to build with code coverage") + +# Don't allow a user to accidentally overwrite the system libc++ installation on Darwin. +# If the user specifies -DCMAKE_INSTALL_PREFIX=/usr the install rules for libc++ +# will not be generated and a warning will be issued. +option(LIBCXX_OVERRIDE_DARWIN_INSTALL "Enable overwriting darwins libc++ installation." OFF) +mark_as_advanced(LIBCXX_OVERRIDE_DARWIN_INSTALL) # Don't show this option by default. + +if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT LIBCXX_OVERRIDE_DARWIN_INSTALL) + if ("${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr") + message(WARNING "Disabling libc++ install rules because installation would " + "overwrite the systems installation. Configure with " + "-DLIBCXX_OVERRIDE_DARWIN_INSTALL=ON to suppress this behaviour.") + mark_as_advanced(CLEAR LIBCXX_OVERRIDE_DARWIN_INSTALL) # Show the override option. + set(LIBCXX_INSTALL_HEADERS OFF) + set(LIBCXX_INSTALL_LIBRARY OFF) + endif() +endif() + +set(LIBCXX_CONFIGURE_IDE_DEFAULT OFF) +if (XCODE OR MSVC_IDE) + set(LIBCXX_CONFIGURE_IDE_DEFAULT ON) +endif() +option(LIBCXX_CONFIGURE_IDE "Configure libcxx for use within an IDE" + ${LIBCXX_CONFIGURE_IDE_DEFAULT}) + +#=============================================================================== +# Check option configurations +#=============================================================================== + +if (LIBCXX_ENABLE_FILESYSTEM AND NOT LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY) + message(FATAL_ERROR + "LIBCXX_ENABLE_FILESYSTEM cannot be turned on when LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF") +endif() + +# Ensure LIBCXX_ENABLE_MONOTONIC_CLOCK is set to ON only when +# LIBCXX_ENABLE_THREADS is on. +if(LIBCXX_ENABLE_THREADS AND NOT LIBCXX_ENABLE_MONOTONIC_CLOCK) + message(FATAL_ERROR "LIBCXX_ENABLE_MONOTONIC_CLOCK can only be set to OFF" + " when LIBCXX_ENABLE_THREADS is also set to OFF.") +endif() + +if(NOT LIBCXX_ENABLE_THREADS) + if(LIBCXX_HAS_PTHREAD_API) + message(FATAL_ERROR "LIBCXX_HAS_PTHREAD_API can only be set to ON" + " when LIBCXX_ENABLE_THREADS is also set to ON.") + endif() + if(LIBCXX_HAS_EXTERNAL_THREAD_API) + message(FATAL_ERROR "LIBCXX_HAS_EXTERNAL_THREAD_API can only be set to ON" + " when LIBCXX_ENABLE_THREADS is also set to ON.") + endif() + if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY) + message(FATAL_ERROR "LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY can only be set " + "to ON when LIBCXX_ENABLE_THREADS is also set to ON.") + endif() + if (LIBCXX_HAS_WIN32_THREAD_API) + message(FATAL_ERROR "LIBCXX_HAS_WIN32_THREAD_API can only be set to ON" + " when LIBCXX_ENABLE_THREADS is also set to ON.") + endif() + +endif() + +if (LIBCXX_HAS_EXTERNAL_THREAD_API) + if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY) + message(FATAL_ERROR "The options LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY and " + "LIBCXX_HAS_EXTERNAL_THREAD_API cannot both be ON at " + "the same time") + endif() + if (LIBCXX_HAS_PTHREAD_API) + message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API" + "and LIBCXX_HAS_PTHREAD_API cannot be both" + "set to ON at the same time.") + endif() + if (LIBCXX_HAS_WIN32_THREAD_API) + message(FATAL_ERROR "The options LIBCXX_HAS_EXTERNAL_THREAD_API" + "and LIBCXX_HAS_WIN32_THREAD_API cannot be both" + "set to ON at the same time.") + endif() +endif() + +if (LIBCXX_HAS_PTHREAD_API) + if (LIBCXX_HAS_WIN32_THREAD_API) + message(FATAL_ERROR "The options LIBCXX_HAS_PTHREAD_API" + "and LIBCXX_HAS_WIN32_THREAD_API cannot be both" + "set to ON at the same time.") + endif() +endif() + +# Ensure LLVM_USE_SANITIZER is not specified when LIBCXX_GENERATE_COVERAGE +# is ON. +if (LLVM_USE_SANITIZER AND LIBCXX_GENERATE_COVERAGE) + message(FATAL_ERROR "LLVM_USE_SANITIZER cannot be used with LIBCXX_GENERATE_COVERAGE") +endif() + +# Set LIBCXX_BUILD_32_BITS to (LIBCXX_BUILD_32_BITS OR LLVM_BUILD_32_BITS) +# and check that we can build with 32 bits if requested. +if (CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32) + if (LIBCXX_BUILD_32_BITS AND NOT LLVM_BUILD_32_BITS) # Don't duplicate the output from LLVM + message(STATUS "Building 32 bits executables and libraries.") + endif() +elseif(LIBCXX_BUILD_32_BITS) + message(FATAL_ERROR "LIBCXX_BUILD_32_BITS=ON is not supported on this platform.") +endif() + +# Check that this option is not enabled on Apple and emit a usage warning. +if (LIBCXX_ENABLE_STATIC_ABI_LIBRARY) + if (APPLE) + message(FATAL_ERROR "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is not supported on OS X") + else() + message(WARNING "LIBCXX_ENABLE_STATIC_ABI_LIBRARY is an experimental option") + endif() + if (LIBCXX_ENABLE_STATIC AND NOT PYTHONINTERP_FOUND) + message(FATAL_ERROR "LIBCXX_ENABLE_STATIC_ABI_LIBRARY requires python but it was not found.") + endif() +endif() + +if (LIBCXX_ENABLE_ABI_LINKER_SCRIPT) + if (APPLE) + message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT cannot be used on APPLE targets") + endif() + if (NOT PYTHONINTERP_FOUND) + message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT requires python but it was not found.") + endif() + if (NOT LIBCXX_ENABLE_SHARED) + message(FATAL_ERROR "LIBCXX_ENABLE_ABI_LINKER_SCRIPT is only available for shared library builds.") + endif() +endif() + +if (LIBCXX_STATICALLY_LINK_ABI_IN_SHARED_LIBRARY AND LIBCXX_ENABLE_ABI_LINKER_SCRIPT) + message(FATAL_ERROR "Conflicting options given. + LIBCXX_ENABLE_STATIC_ABI_LIBRARY cannot be specified with + LIBCXX_ENABLE_ABI_LINKER_SCRIPT") +endif() + +if (LIBCXX_HAS_MUSL_LIBC AND NOT LIBCXX_INSTALL_SUPPORT_HEADERS) + message(FATAL_ERROR "LIBCXX_INSTALL_SUPPORT_HEADERS can not be turned off" + "when building for Musl with LIBCXX_HAS_MUSL_LIBC.") +endif() + +if (LIBCXX_ABI_FORCE_ITANIUM AND LIBCXX_ABI_FORCE_MICROSOFT) + message(FATAL_ERROR "Only one of LIBCXX_ABI_FORCE_ITANIUM and LIBCXX_ABI_FORCE_MICROSOFT can be specified.") +endif () + +#=============================================================================== +# Configure System +#=============================================================================== + +set(LIBCXX_COMPILER ${CMAKE_CXX_COMPILER}) +set(LIBCXX_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) +set(LIBCXX_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) +set(LIBCXX_BINARY_INCLUDE_DIR "${LIBCXX_BINARY_DIR}/include/c++build") + +string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION + ${PACKAGE_VERSION}) + +if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR AND NOT APPLE) + set(DEFAULT_INSTALL_PREFIX lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/${LLVM_DEFAULT_TARGET_TRIPLE}/) + set(DEFAULT_INSTALL_HEADER_PREFIX lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}/) + set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}/${LLVM_DEFAULT_TARGET_TRIPLE}/lib${LIBCXX_LIBDIR_SUFFIX}) + set(LIBCXX_HEADER_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}/clang/${CLANG_VERSION}) +elseif(LLVM_LIBRARY_OUTPUT_INTDIR) + set(LIBCXX_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) + set(LIBCXX_HEADER_DIR ${LLVM_BINARY_DIR}) +else() + set(LIBCXX_LIBRARY_DIR ${CMAKE_BINARY_DIR}/lib${LIBCXX_LIBDIR_SUFFIX}) +endif() + +file(MAKE_DIRECTORY "${LIBCXX_BINARY_INCLUDE_DIR}") + +set(LIBCXX_INSTALL_PREFIX ${DEFAULT_INSTALL_PREFIX} CACHE STRING + "Define libc++ destination prefix.") + +set(LIBCXX_INSTALL_HEADER_PREFIX ${DEFAULT_INSTALL_HEADER_PREFIX} CACHE STRING + "Define libc++ header destination prefix.") + +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR}) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR}) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LIBCXX_LIBRARY_DIR}) + +# Declare libc++ configuration variables. +# They are intended for use as follows: +# LIBCXX_CXX_FLAGS: General flags for both the compiler and linker. +# LIBCXX_COMPILE_FLAGS: Compile only flags. +# LIBCXX_LINK_FLAGS: Linker only flags. +# LIBCXX_LIBRARIES: libraries libc++ is linked to. +# LIBCXX_INTERFACE_LIBRARIES: Libraries that must be linked when using libc++ +# These libraries are exposed in the linker script. +set(LIBCXX_COMPILE_FLAGS "") +set(LIBCXX_LINK_FLAGS "") +set(LIBCXX_LIBRARIES "") +set(LIBCXX_INTERFACE_LIBRARIES "") + +# Include macros for adding and removing libc++ flags. +include(HandleLibcxxFlags) + +# Target flags ================================================================ +# These flags get added to CMAKE_CXX_FLAGS and CMAKE_C_FLAGS so that +# 'config-ix' use them during feature checks. It also adds them to both +# 'LIBCXX_COMPILE_FLAGS' and 'LIBCXX_LINK_FLAGS' +add_target_flags_if(LIBCXX_BUILD_32_BITS "-m32") +add_target_flags_if(LIBCXX_TARGET_TRIPLE "--target=${LIBCXX_TARGET_TRIPLE}") +add_target_flags_if(LIBCXX_SYSROOT "--sysroot=${LIBCXX_SYSROOT}") +add_target_flags_if(LIBCXX_GCC_TOOLCHAIN "--gcc-toolchain=${LIBCXX_GCC_TOOLCHAIN}") +if (LIBCXX_TARGET_TRIPLE) + set(TARGET_TRIPLE "${LIBCXX_TARGET_TRIPLE}") +endif() + +# Configure compiler. +include(config-ix) + +if (LIBCXX_USE_COMPILER_RT) + list(APPEND LIBCXX_LINK_FLAGS "-rtlib=compiler-rt") +endif() + +# Configure coverage options. +if (LIBCXX_GENERATE_COVERAGE) + include(CodeCoverage) + set(CMAKE_BUILD_TYPE "COVERAGE" CACHE STRING "" FORCE) +endif() + +string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) +if (uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG") + set(LIBCXX_DEBUG_BUILD ON) +else() + set(LIBCXX_DEBUG_BUILD OFF) +endif() + +#=============================================================================== +# Setup Compiler Flags +#=============================================================================== + +include(HandleLibCXXABI) # Setup the ABI library flags + +if (NOT LIBCXX_STANDALONE_BUILD) + # Remove flags that may have snuck in. + remove_flags(-DNDEBUG -UNDEBUG -D_DEBUG + -lc++abi) +endif() +remove_flags(-stdlib=libc++ -stdlib=libstdc++) + +# FIXME: Remove all debug flags and flags that change which Windows +# default libraries are linked. Currently we only support linking the +# non-debug DLLs +remove_flags("/D_DEBUG" "/MTd" "/MDd" "/MT" "/Md") + +# FIXME(EricWF): See the FIXME on LIBCXX_ENABLE_PEDANTIC. +# Remove the -pedantic flag and -Wno-pedantic and -pedantic-errors +# so they don't get transformed into -Wno and -errors respectively. +remove_flags(-Wno-pedantic -pedantic-errors -pedantic) + +# Required flags ============================================================== +set(LIBCXX_STANDARD_VER c++11 CACHE INTERNAL "internal option to change build dialect") +if (LIBCXX_HAS_MUSL_LIBC) + # musl's pthread implementations uses volatile types in their structs which is + # not a constexpr in C++11 but is in C++14, so we use C++14 with musl. + set(LIBCXX_STANDARD_VER c++14 CACHE INTERNAL "internal option to change build dialect") +endif() +add_compile_flags_if_supported(-std=${LIBCXX_STANDARD_VER}) +mangle_name("LIBCXX_SUPPORTS_STD_EQ_${LIBCXX_STANDARD_VER}_FLAG" SUPPORTS_DIALECT_NAME) +if(NOT ${SUPPORTS_DIALECT_NAME}) + if(NOT "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" AND NOT "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC") + message(FATAL_ERROR "C++11 or greater is required but the compiler does not support ${LIBCXX_STANDARD_VER}") + endif() +endif() + +# On all systems the system c++ standard library headers need to be excluded. +# MSVC only has -X, which disables all default includes; including the crt. +# Thus, we do nothing and hope we don't accidentally include any of the C++ +# headers +add_compile_flags_if_supported(-nostdinc++) + +# Hide all inline function definitions which have not explicitly been marked +# visible. This prevents new definitions for inline functions from appearing in +# the dylib when get ODR used by another function. +add_compile_flags_if_supported(-fvisibility-inlines-hidden) + +if (LIBCXX_CONFIGURE_IDE) + # This simply allows IDE to process + add_compile_flags_if_supported(-fcoroutines-ts) +endif() + +# Let the library headers know they are currently being used to build the +# library. +add_definitions(-D_LIBCPP_BUILDING_LIBRARY) + +if (NOT LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS) + add_definitions(-D_LIBCPP_DISABLE_NEW_DELETE_DEFINITIONS) +endif() + +# Warning flags =============================================================== +add_definitions(-D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +add_compile_flags_if_supported( + -Wall -Wextra -W -Wwrite-strings + -Wno-unused-parameter -Wno-long-long + -Werror=return-type) +if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") + add_compile_flags_if_supported( + -Wno-user-defined-literals + -Wno-covered-switch-default) +elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU") + add_compile_flags_if_supported( + -Wno-literal-suffix + -Wno-c++14-compat + -Wno-noexcept-type) +endif() +if (LIBCXX_ENABLE_WERROR) + add_compile_flags_if_supported(-Werror) + add_compile_flags_if_supported(-WX) +else() + # TODO(EricWF) Remove this. We shouldn't be suppressing errors when -Werror is + # added elsewhere. + add_compile_flags_if_supported(-Wno-error) +endif() +if (LIBCXX_ENABLE_PEDANTIC) + add_compile_flags_if_supported(-pedantic) +endif() +if (LIBCXX_DISABLE_MACRO_CONFLICT_WARNINGS) + add_definitions(-D_LIBCPP_DISABLE_MACRO_CONFLICT_WARNINGS) +endif() + +# Exception flags ============================================================= +if (LIBCXX_ENABLE_EXCEPTIONS) + # Catches C++ exceptions only and tells the compiler to assume that extern C + # functions never throw a C++ exception. + add_compile_flags_if_supported(-EHsc) +else() + add_definitions(-D_LIBCPP_NO_EXCEPTIONS) + add_compile_flags_if_supported(-EHs- -EHa-) + add_compile_flags_if_supported(-fno-exceptions) +endif() + +# RTTI flags ================================================================== +if (NOT LIBCXX_ENABLE_RTTI) + add_definitions(-D_LIBCPP_NO_RTTI) + add_compile_flags_if_supported(-GR-) + add_compile_flags_if_supported(-fno-rtti) +endif() + +# Threading flags ============================================================= +if (LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY AND LIBCXX_ENABLE_SHARED) + # Need to allow unresolved symbols if this is to work with shared library builds + if (APPLE) + add_link_flags("-undefined dynamic_lookup") + else() + # Relax this restriction from HandleLLVMOptions + string(REPLACE "-Wl,-z,defs" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}") + endif() +endif() + +# Assertion flags ============================================================= +define_if(LIBCXX_ENABLE_ASSERTIONS -UNDEBUG) +define_if_not(LIBCXX_ENABLE_ASSERTIONS -DNDEBUG) +define_if(LIBCXX_ENABLE_ASSERTIONS -D_LIBCPP_DEBUG=0) +define_if(LIBCXX_DEBUG_BUILD -D_DEBUG) +if (LIBCXX_ENABLE_ASSERTIONS AND NOT LIBCXX_DEBUG_BUILD) + # MSVC doesn't like _DEBUG on release builds. See PR 4379. + define_if_not(LIBCXX_TARGETING_MSVC -D_DEBUG) +endif() + +# Modules flags =============================================================== +# FIXME The libc++ sources are fundamentally non-modular. They need special +# versions of the headers in order to provide C++03 and legacy ABI definitions. +# NOTE: The public headers can be used with modules in all other contexts. +if (LLVM_ENABLE_MODULES) + # Ignore that the rest of the modules flags are now unused. + add_compile_flags_if_supported(-Wno-unused-command-line-argument) + add_compile_flags(-fno-modules) +endif() + +# Sanitizer flags ============================================================= + +# Configure for sanitizers. If LIBCXX_STANDALONE_BUILD then we have to do +# the flag translation ourselves. Othewise LLVM's CMakeList.txt will handle it. +if (LIBCXX_STANDALONE_BUILD) + set(LLVM_USE_SANITIZER "" CACHE STRING + "Define the sanitizer used to build the library and tests") + # NOTE: LLVM_USE_SANITIZER checks for a UNIX like system instead of MSVC. + # But we don't have LLVM_ON_UNIX so checking for MSVC is the best we can do. + if (LLVM_USE_SANITIZER AND NOT MSVC) + add_flags_if_supported("-fno-omit-frame-pointer") + add_flags_if_supported("-gline-tables-only") + + if (NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" AND + NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELWITHDEBINFO") + add_flags_if_supported("-gline-tables-only") + endif() + if (LLVM_USE_SANITIZER STREQUAL "Address") + add_flags("-fsanitize=address") + elseif (LLVM_USE_SANITIZER MATCHES "Memory(WithOrigins)?") + add_flags(-fsanitize=memory) + if (LLVM_USE_SANITIZER STREQUAL "MemoryWithOrigins") + add_flags("-fsanitize-memory-track-origins") + endif() + elseif (LLVM_USE_SANITIZER STREQUAL "Undefined") + add_flags("-fsanitize=undefined -fno-sanitize=vptr,function -fno-sanitize-recover=all") + elseif (LLVM_USE_SANITIZER STREQUAL "Thread") + add_flags(-fsanitize=thread) + else() + message(WARNING "Unsupported value of LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}") + endif() + elseif(LLVM_USE_SANITIZER AND MSVC) + message(WARNING "LLVM_USE_SANITIZER is not supported on this platform.") + endif() +endif() + +# Configuration file flags ===================================================== +if (NOT LIBCXX_ABI_VERSION EQUAL DEFAULT_ABI_VERSION) + config_define(${LIBCXX_ABI_VERSION} _LIBCPP_ABI_VERSION) +endif() +config_define_if(LIBCXX_ABI_UNSTABLE _LIBCPP_ABI_UNSTABLE) +config_define_if(LIBCXX_ABI_FORCE_ITANIUM _LIBCPP_ABI_FORCE_ITANIUM) +config_define_if(LIBCXX_ABI_FORCE_MICROSOFT _LIBCPP_ABI_FORCE_MICROSOFT) +config_define_if(LIBCXX_HIDE_FROM_ABI_PER_TU_BY_DEFAULT _LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT) + +config_define_if_not(LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE _LIBCPP_HAS_NO_GLOBAL_FILESYSTEM_NAMESPACE) +config_define_if_not(LIBCXX_ENABLE_STDIN _LIBCPP_HAS_NO_STDIN) +config_define_if_not(LIBCXX_ENABLE_STDOUT _LIBCPP_HAS_NO_STDOUT) +config_define_if_not(LIBCXX_ENABLE_THREADS _LIBCPP_HAS_NO_THREADS) +config_define_if_not(LIBCXX_ENABLE_MONOTONIC_CLOCK _LIBCPP_HAS_NO_MONOTONIC_CLOCK) +config_define_if_not(LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS) + +config_define_if(LIBCXX_HAS_PTHREAD_API _LIBCPP_HAS_THREAD_API_PTHREAD) +config_define_if(LIBCXX_HAS_EXTERNAL_THREAD_API _LIBCPP_HAS_THREAD_API_EXTERNAL) +config_define_if(LIBCXX_HAS_WIN32_THREAD_API _LIBCPP_HAS_THREAD_API_WIN32) +config_define_if(LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY _LIBCPP_HAS_THREAD_LIBRARY_EXTERNAL) +config_define_if(LIBCXX_HAS_MUSL_LIBC _LIBCPP_HAS_MUSL_LIBC) +config_define_if(LIBCXX_NO_VCRUNTIME _LIBCPP_NO_VCRUNTIME) + +if (LIBCXX_ABI_DEFINES) + set(abi_defines) + foreach (abi_define ${LIBCXX_ABI_DEFINES}) + if (NOT abi_define MATCHES "^_LIBCPP_ABI_") + message(SEND_ERROR "Invalid ABI macro ${abi_define} in LIBCXX_ABI_DEFINES") + endif() + list(APPEND abi_defines "#define ${abi_define}") + endforeach() + string(REPLACE ";" "\n" abi_defines "${abi_defines}") + config_define(${abi_defines} _LIBCPP_ABI_DEFINES) +endif() + +# By default libc++ on Windows expects to use a shared library, which requires +# the headers to use DLL import/export semantics. However when building a +# static library only we modify the headers to disable DLL import/export. +if (DEFINED WIN32 AND LIBCXX_ENABLE_STATIC AND NOT LIBCXX_ENABLE_SHARED) + message(STATUS "Generating custom __config for non-DLL Windows build") + config_define(ON _LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS) +endif() + +set(site_config_path "${LIBCXX_BINARY_DIR}/__config_site") +if (LIBCXX_NEEDS_SITE_CONFIG) + configure_file("include/__config_site.in" + "${site_config_path}" + @ONLY) + + # Provide the config definitions by included the generated __config_site + # file at compile time. + if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC" OR "${CMAKE_CXX_SIMULATE_ID}" STREQUAL "MSVC") + add_compile_flags("/FI\"${LIBCXX_BINARY_DIR}/__config_site\"") + else() + add_compile_flags("-include ${LIBCXX_BINARY_DIR}/__config_site") + endif() +else() + if (EXISTS "${site_config_path}") + message(STATUS "Removing stale site configuration ${site_config_path}") + file(REMOVE "${site_config_path}") + endif() +endif() + +#=============================================================================== +# Setup Source Code And Tests +#=============================================================================== +include_directories(include) +add_subdirectory(include) +add_subdirectory(lib) + + +if (LIBCXX_INCLUDE_BENCHMARKS) + add_subdirectory(benchmarks) +endif() + +# Create the lit.site.cfg file even when LIBCXX_INCLUDE_TESTS is OFF or +# LLVM_FOUND is OFF. This allows users to run the tests manually using +# LIT without requiring a full LLVM checkout. +# +# However, since some submission systems strip test/ subdirectories, check for +# it before adding it. + +if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/test") + add_subdirectory(test) +endif() +if (LIBCXX_INCLUDE_TESTS) + add_subdirectory(lib/abi) +endif() + +if (LIBCXX_STANDALONE_BUILD AND EXISTS "${LLVM_MAIN_SRC_DIR}/utils/llvm-lit") + include(AddLLVM) # for get_llvm_lit_path + # Make sure the llvm-lit script is generated into the bin directory, and do + # it after adding all tests, since the generated script will only work + # correctly discovered tests against test locations from the source tree that + # have already been discovered. + add_subdirectory(${LLVM_MAIN_SRC_DIR}/utils/llvm-lit + ${CMAKE_CURRENT_BINARY_DIR}/llvm-lit) +endif() + +if (LIBCXX_INCLUDE_DOCS) + add_subdirectory(docs) +endif() diff --git a/CREDITS.TXT b/CREDITS.TXT new file mode 100644 index 000000000..46a06c6ea --- /dev/null +++ b/CREDITS.TXT @@ -0,0 +1,150 @@ +This file is a partial list of people who have contributed to the LLVM/libc++ +project. If you have contributed a patch or made some other contribution to +LLVM/libc++, please submit a patch to this file to add yourself, and it will be +done! + +The list is sorted by surname and formatted to allow easy grepping and +beautification by scripts. The fields are: name (N), email (E), web-address +(W), PGP key ID and fingerprint (P), description (D), and snail-mail address +(S). + +N: Saleem Abdulrasool +E: compnerd@compnerd.org +D: Minor patches and Linux fixes. + +N: Dan Albert +E: danalbert@google.com +D: Android support and test runner improvements. + +N: Dimitry Andric +E: dimitry@andric.com +D: Visibility fixes, minor FreeBSD portability patches. + +N: Holger Arnold +E: holgerar@gmail.com +D: Minor fix. + +N: Ruben Van Boxem +E: vanboxem dot ruben at gmail dot com +D: Initial Windows patches. + +N: David Chisnall +E: theraven at theravensnest dot org +D: FreeBSD and Solaris ports, libcxxrt support, some atomics work. + +N: Marshall Clow +E: mclow.lists@gmail.com +E: marshall@idio.com +D: C++14 support, patches and bug fixes. + +N: Jonathan B Coe +E: jbcoe@me.com +D: Implementation of propagate_const. + +N: Glen Joseph Fernandes +E: glenjofe@gmail.com +D: Implementation of to_address. + +N: Eric Fiselier +E: eric@efcs.ca +D: LFTS support, patches and bug fixes. + +N: Bill Fisher +E: william.w.fisher@gmail.com +D: Regex bug fixes. + +N: Matthew Dempsky +E: matthew@dempsky.org +D: Minor patches and bug fixes. + +N: Google Inc. +D: Copyright owner and contributor of the CityHash algorithm + +N: Howard Hinnant +E: hhinnant@apple.com +D: Architect and primary author of libc++ + +N: Hyeon-bin Jeong +E: tuhertz@gmail.com +D: Minor patches and bug fixes. + +N: Argyrios Kyrtzidis +E: kyrtzidis@apple.com +D: Bug fixes. + +N: Bruce Mitchener, Jr. +E: bruce.mitchener@gmail.com +D: Emscripten-related changes. + +N: Michel Morin +E: mimomorin@gmail.com +D: Minor patches to is_convertible. + +N: Andrew Morrow +E: andrew.c.morrow@gmail.com +D: Minor patches and Linux fixes. + +N: Michael Park +E: mcypark@gmail.com +D: Implementation of . + +N: Arvid Picciani +E: aep at exys dot org +D: Minor patches and musl port. + +N: Bjorn Reese +E: breese@users.sourceforge.net +D: Initial regex prototype + +N: Nico Rieck +E: nico.rieck@gmail.com +D: Windows fixes + +N: Jon Roelofs +E: jroelofS@jroelofs.com +D: Remote testing, Newlib port, baremetal/single-threaded support. + +N: Jonathan Sauer +D: Minor patches, mostly related to constexpr + +N: Craig Silverstein +E: csilvers@google.com +D: Implemented Cityhash as the string hash function on 64-bit machines + +N: Richard Smith +D: Minor patches. + +N: Joerg Sonnenberger +E: joerg@NetBSD.org +D: NetBSD port. + +N: Stephan Tolksdorf +E: st@quanttec.com +D: Minor fix + +N: Michael van der Westhuizen +E: r1mikey at gmail dot com + +N: Larisse Voufo +D: Minor patches. + +N: Klaas de Vries +E: klaas at klaasgaaf dot nl +D: Minor bug fix. + +N: Zhang Xiongpang +E: zhangxiongpang@gmail.com +D: Minor patches and bug fixes. + +N: Xing Xue +E: xingxue@ca.ibm.com +D: AIX port + +N: Zhihao Yuan +E: lichray@gmail.com +D: Standard compatibility fixes. + +N: Jeffrey Yasskin +E: jyasskin@gmail.com +E: jyasskin@google.com +D: Linux fixes. diff --git a/LICENSE.TXT b/LICENSE.TXT new file mode 100644 index 000000000..c278f2c92 --- /dev/null +++ b/LICENSE.TXT @@ -0,0 +1,76 @@ +============================================================================== +libc++ License +============================================================================== + +The libc++ library is dual licensed under both the University of Illinois +"BSD-Like" license and the MIT license. As a user of this code you may choose +to use it under either license. As a contributor, you agree to allow your code +to be used under both. + +Full text of the relevant licenses is included below. + +============================================================================== + +University of Illinois/NCSA +Open Source License + +Copyright (c) 2009-2017 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== + +Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/NOTES.TXT b/NOTES.TXT new file mode 100644 index 000000000..24d245d43 --- /dev/null +++ b/NOTES.TXT @@ -0,0 +1,29 @@ +//===---------------------------------------------------------------------===// +// Notes relating to various libc++ tasks +//===---------------------------------------------------------------------===// + +This file contains notes about various libc++ tasks and processes. + +//===---------------------------------------------------------------------===// +// Post-Release TODO +//===---------------------------------------------------------------------===// + +These notes contain a list of things that must be done after branching for +an LLVM release. + +1. Update _LIBCPP_VERSION in `__config` +2. Update the __libcpp_version file. +3. Update the version number in `docs/conf.py` +4. Create ABI lists for the previous release under `lib/abi` + +//===---------------------------------------------------------------------===// +// Adding a new header TODO +//===---------------------------------------------------------------------===// + +These notes contain a list of things that must be done upon adding a new header +to libc++. + +1. Add a test under `test/libcxx` that the header defines `_LIBCPP_VERSION`. +2. Update `test/libcxx/double_include.sh.cpp` to include the new header. +3. Create a submodule in `include/module.modulemap` for the new header. +4. Update the include/CMakeLists.txt file to include the new header. diff --git a/TODO.TXT b/TODO.TXT new file mode 100644 index 000000000..652a38de7 --- /dev/null +++ b/TODO.TXT @@ -0,0 +1,76 @@ +This is meant to be a general place to list things that should be done "someday" + +CXX Runtime Library Tasks +========================= +* Fix that CMake always link to /usr/lib/libc++abi.dylib on OS X. +* Look into mirroring libsupc++'s typeinfo vtable layout when libsupc++/libstdc++ + is used as the runtime library. +* Investigate and document interoperability between libc++ and libstdc++ on + linux. Do this for every supported c++ runtime library. + +Atomic Related Tasks +==================== +* future should use for synchronization. + +Test Suite Tasks +================ +* Improve the quality and portability of the locale test data. +* Convert failure tests to use Clang Verify. + +Filesystem Tasks +================ +* P0492r2 - Implement National body comments for Filesystem + * INCOMPLETE - US 25: has_filename() is equivalent to just !empty() + * INCOMPLETE - US 31: Everything is defined in terms of one implicit host system + * INCOMPLETE - US 32: Meaning of 27.10.2.1 unclear + * INCOMPLETE - US 33: Definition of canonical path problematic + * INCOMPLETE - US 34: Are there attributes of a file that are not an aspect of the file system? + * INCOMPLETE - US 35: What synchronization is required to avoid a file system race? + * INCOMPLETE - US 36: Symbolic links themselves are attached to a directory via (hard) links + * INCOMPLETE - US 37: The term “redundant current directory (dot) elements” is not defined + * INCOMPLETE - US 38: Duplicates §17.3.16 + * INCOMPLETE - US 39: Remove note: Dot and dot-dot are not directories + * INCOMPLETE - US 40: Not all directories have a parent. + * INCOMPLETE - US 41: The term “parent directory” for a (non-directory) file is unusual + * INCOMPLETE - US 42: Pathname resolution does not always resolve a symlink + * INCOMPLETE - US 43: Concerns about encoded character types + * INCOMPLETE - US 44: Definition of path in terms of a string requires leaky abstraction + * INCOMPLETE - US 45: Generic format portability compromised by unspecified root-name + * INCOMPLETE - US 46: filename can be empty so productions for relative-path are redundant + * INCOMPLETE - US 47: “.” and “..” already match the name production + * INCOMPLETE - US 48: Multiple separators are often meaningful in a root-name + * INCOMPLETE - US 49: What does “method of conversion method” mean? + * INCOMPLETE - US 50: 27.10.8.1 ¶ 1.4 largely redundant with ¶ 1.3 + * INCOMPLETE - US 51: Failing to add / when appending empty string prevents useful apps + * INCOMPLETE - US 52: remove_filename() postcondition is not by itself a definition + * INCOMPLETE - US 53: remove_filename()'s name does not correspond to its behavior + * INCOMPLETE - US 54: remove_filename() is broken + * INCOMPLETE - US 55: replace_extension()'s use of path as parameter is inappropriate + * INCOMPLETE - US 56: Remove replace_extension()'s conditional addition of period + * INCOMPLETE - US 57: On Windows, absolute paths will sort in among relative paths + * INCOMPLETE - US 58: parent_path() behavior for root paths is useless + * INCOMPLETE - US 59: filename() returning path for single path components is bizarre + * INCOMPLETE - US 60: path("/foo/").filename()==path(".") is surprising + * INCOMPLETE - US 61: Leading dots in filename() should not begin an extension + * INCOMPLETE - US 62: It is important that stem()+extension()==filename() + * INCOMPLETE - US 63: lexically_normal() inconsistently treats trailing "/" but not "/.." as directory + * INCOMPLETE - US 73, CA 2: root-name is effectively implementation defined + * INCOMPLETE - US 74, CA 3: The term “pathname” is ambiguous in some contexts + * INCOMPLETE - US 75, CA 4: Extra flag in path constructors is needed + * INCOMPLETE - US 76, CA 5: root-name definition is over-specified. + * INCOMPLETE - US 77, CA 6: operator/ and other appends not useful if arg has root-name + * INCOMPLETE - US 78, CA 7: Member absolute() in 27.10.4.1 is overspecified for non-POSIX-like O/S + * INCOMPLETE - US 79, CA 8: Some operation functions are overspecified for implementation-defined file types + * INCOMPLETE - US 185: Fold error_code and non-error_code signatures into one signature + * INCOMPLETE - FI 14: directory_entry comparisons are members + * INCOMPLETE - Late 36: permissions() error_code overload should be noexcept + * INCOMPLETE - Late 37: permissions() actions should be separate parameter + * INCOMPLETE - Late 42: resize_file() Postcondition missing argument + +Misc Tasks +========== +* Find all sequences of >2 underscores and eradicate them. +* run clang-tidy on libc++ +* Document the "conditionally-supported" bits of libc++ +* Look at basic_string's move assignment operator, re LWG 2063 and POCMA +* Put a static_assert in std::allocator to deny const/volatile types (LWG 2447) diff --git a/appveyor-reqs-install.cmd b/appveyor-reqs-install.cmd new file mode 100644 index 000000000..a4160110a --- /dev/null +++ b/appveyor-reqs-install.cmd @@ -0,0 +1,53 @@ +@echo on + +if NOT EXIST C:\projects\deps ( + mkdir C:\projects\deps +) +cd C:\projects\deps + +::########################################################################### +:: Setup Compiler +::########################################################################### +if NOT EXIST llvm-installer.exe ( + appveyor DownloadFile http://prereleases.llvm.org/win-snapshots/LLVM-7.0.0-r325576-win32.exe -FileName llvm-installer.exe +) +if "%CLANG_VERSION%"=="ToT" ( + START /WAIT llvm-installer.exe /S /D=C:\"Program Files\LLVM" +) +if DEFINED CLANG_VERSION @set PATH="C:\Program Files\LLVM\bin";%PATH% +if DEFINED CLANG_VERSION clang-cl -v + +if DEFINED MINGW_PATH rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe" +if DEFINED MINGW_PATH @set "PATH=%PATH:C:\Program Files (x86)\Git\bin=%" +if DEFINED MINGW_PATH @set "PATH=%PATH%;%MINGW_PATH%" +if DEFINED MINGW_PATH g++ -v + +::########################################################################### +:: Install a recent CMake +::########################################################################### +if NOT EXIST cmake ( + appveyor DownloadFile https://cmake.org/files/v3.7/cmake-3.7.2-win64-x64.zip -FileName cmake.zip + 7z x cmake.zip -oC:\projects\deps > nul + move C:\projects\deps\cmake-* C:\projects\deps\cmake + rm cmake.zip +) +@set PATH=C:\projects\deps\cmake\bin;%PATH% +cmake --version + +::########################################################################### +:: Install Ninja +::########################################################################### +if NOT EXIST ninja ( + appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip -FileName ninja.zip + 7z x ninja.zip -oC:\projects\deps\ninja > nul + rm ninja.zip +) +@set PATH=C:\projects\deps\ninja;%PATH% +ninja --version + +::########################################################################### +:: Setup the cached copy of LLVM +::########################################################################### +git clone --depth=1 http://llvm.org/git/llvm.git + +@echo off diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..be69a555d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,78 @@ +version: '{build}' + +shallow_clone: true + +build: + verbosity: detailed + +configuration: + - Debug + +environment: + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + CMAKE_OPTIONS: -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe + CLANG_VERSION: ToT + MSVC_SETUP_PATH: C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat + MSVC_SETUP_ARG: x86 + GENERATOR: Ninja + MAKE_PROGRAM: ninja + APPVEYOR_SAVE_CACHE_ON_ERROR: true + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + CMAKE_OPTIONS: -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_CXX_COMPILER=clang-cl.exe + CLANG_VERSION: 4 + MSVC_SETUP_PATH: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat + MSVC_SETUP_ARG: x86_amd64 + GENERATOR: Ninja + MAKE_PROGRAM: ninja + APPVEYOR_SAVE_CACHE_ON_ERROR: true + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + MINGW_PATH: C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin + GENERATOR: MinGW Makefiles + MAKE_PROGRAM: mingw32-make + APPVEYOR_SAVE_CACHE_ON_ERROR: true + +install: + ############################################################################ + # All external dependencies are installed in C:\projects\deps + ############################################################################ + - call "%APPVEYOR_BUILD_FOLDER%\\appveyor-reqs-install.cmd" + +before_build: + - if DEFINED MSVC_SETUP_PATH call "%MSVC_SETUP_PATH%" %MSVC_SETUP_ARG% + - cd %APPVEYOR_BUILD_FOLDER% + +build_script: + - md C:\projects\build-libcxx + - cd C:\projects\build-libcxx + - echo %configuration% + + ############################################################################# + # Configuration Step + ############################################################################# + - cmake -G "%GENERATOR%" %CMAKE_OPTIONS% + "-DCMAKE_BUILD_TYPE=%configuration%" + "-DLLVM_PATH=C:\projects\deps\llvm" -DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF + -DLLVM_LIT_ARGS="-sv --show-xfail --show-unsupported" + %APPVEYOR_BUILD_FOLDER% + + ############################################################################# + # Build Step + ############################################################################# + - "%MAKE_PROGRAM%" + +test_script: + - "%MAKE_PROGRAM% check-cxx" + +on_failure: + - appveyor PushArtifact CMakeFiles/CMakeOutput.log + - appveyor PushArtifact CMakeFiles/CMakeError.log + +artifacts: + - path: '_build/CMakeFiles/*.log' + name: logs + +cache: + - C:\projects\deps\ninja + - C:\projects\deps\cmake + - C:\projects\deps\llvm-installer.exe diff --git a/benchmarks/CMakeLists.txt b/benchmarks/CMakeLists.txt new file mode 100644 index 000000000..f557d4aea --- /dev/null +++ b/benchmarks/CMakeLists.txt @@ -0,0 +1,157 @@ +include(ExternalProject) +include(CheckCXXCompilerFlag) + +#============================================================================== +# Build Google Benchmark for libc++ +#============================================================================== + +set(BENCHMARK_LIBCXX_COMPILE_FLAGS + -Wno-unused-command-line-argument + -nostdinc++ + -isystem ${LIBCXX_SOURCE_DIR}/include + -L${LIBCXX_LIBRARY_DIR} + -Wl,-rpath,${LIBCXX_LIBRARY_DIR} + ) +if (DEFINED LIBCXX_CXX_ABI_LIBRARY_PATH) + list(APPEND BENCHMARK_LIBCXX_COMPILE_FLAGS + -L${LIBCXX_CXX_ABI_LIBRARY_PATH} + -Wl,-rpath,${LIBCXX_CXX_ABI_LIBRARY_PATH}) +endif() +split_list(BENCHMARK_LIBCXX_COMPILE_FLAGS) + +ExternalProject_Add(google-benchmark-libcxx + EXCLUDE_FROM_ALL ON + DEPENDS cxx + PREFIX benchmark-libcxx + SOURCE_DIR ${LIBCXX_SOURCE_DIR}/utils/google-benchmark + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx + CMAKE_CACHE_ARGS + -DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER} + -DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER} + -DCMAKE_BUILD_TYPE:STRING=RELEASE + -DCMAKE_INSTALL_PREFIX:PATH= + -DCMAKE_CXX_FLAGS:STRING=${BENCHMARK_LIBCXX_COMPILE_FLAGS} + -DBENCHMARK_USE_LIBCXX:BOOL=ON + -DBENCHMARK_ENABLE_TESTING:BOOL=OFF) + +#============================================================================== +# Build Google Benchmark for the native stdlib +#============================================================================== +set(BENCHMARK_NATIVE_TARGET_FLAGS) +if (LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN) + set(BENCHMARK_NATIVE_TARGET_FLAGS + -gcc-toolchain ${LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN}) +endif() +split_list(BENCHMARK_NATIVE_TARGET_FLAGS) + +if (LIBCXX_BENCHMARK_NATIVE_STDLIB) + ExternalProject_Add(google-benchmark-native + EXCLUDE_FROM_ALL ON + PREFIX benchmark-native + SOURCE_DIR ${LIBCXX_SOURCE_DIR}/utils/google-benchmark + INSTALL_DIR ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native + CMAKE_CACHE_ARGS + -DCMAKE_C_COMPILER:STRING=${CMAKE_C_COMPILER} + -DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER} + -DCMAKE_CXX_FLAGS:STRING=${BENCHMARK_NATIVE_TARGET_FLAGS} + -DCMAKE_BUILD_TYPE:STRING=RELEASE + -DCMAKE_INSTALL_PREFIX:PATH= + -DBENCHMARK_ENABLE_TESTING:BOOL=OFF) +endif() + + +#============================================================================== +# Benchmark tests configuration +#============================================================================== +add_custom_target(cxx-benchmarks) +set(BENCHMARK_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}) +set(BENCHMARK_LIBCXX_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-libcxx) +set(BENCHMARK_NATIVE_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/benchmark-native) +set(BENCHMARK_TEST_COMPILE_FLAGS + -std=c++17 -O2 + -I${BENCHMARK_LIBCXX_INSTALL}/include + -I${LIBCXX_SOURCE_DIR}/test/support +) +set(BENCHMARK_TEST_LIBCXX_COMPILE_FLAGS + -nostdinc++ + -isystem ${LIBCXX_SOURCE_DIR}/include + ${BENCHMARK_TEST_COMPILE_FLAGS} + -Wno-user-defined-literals +) +set(BENCHMARK_TEST_LIBCXX_LINK_FLAGS + -nodefaultlibs + -L${BENCHMARK_LIBCXX_INSTALL}/lib/ +) +set(BENCHMARK_TEST_NATIVE_COMPILE_FLAGS + ${BENCHMARK_NATIVE_TARGET_FLAGS} + ${BENCHMARK_TEST_COMPILE_FLAGS} +) +set(BENCHMARK_TEST_NATIVE_LINK_FLAGS + ${BENCHMARK_NATIVE_TARGET_FLAGS} + -L${BENCHMARK_NATIVE_INSTALL}/lib +) +split_list(BENCHMARK_TEST_COMPILE_FLAGS) +split_list(BENCHMARK_TEST_LIBCXX_COMPILE_FLAGS) +split_list(BENCHMARK_TEST_LIBCXX_LINK_FLAGS) +split_list(BENCHMARK_TEST_NATIVE_COMPILE_FLAGS) +split_list(BENCHMARK_TEST_NATIVE_LINK_FLAGS) +macro(add_benchmark_test name source_file) + set(libcxx_target ${name}_libcxx) + add_executable(${libcxx_target} EXCLUDE_FROM_ALL ${source_file}) + add_dependencies(${libcxx_target} cxx google-benchmark-libcxx) + add_dependencies(cxx-benchmarks ${libcxx_target}) + if (LIBCXX_ENABLE_SHARED) + target_link_libraries(${libcxx_target} cxx_shared) + else() + target_link_libraries(${libcxx_target} cxx_static) + endif() + if (TARGET cxx_experimental) + target_link_libraries(${libcxx_target} cxx_experimental) + endif() + target_link_libraries(${libcxx_target} -lbenchmark) + set_target_properties(${libcxx_target} + PROPERTIES + OUTPUT_NAME "${name}.libcxx.out" + RUNTIME_OUTPUT_DIRECTORY "${BENCHMARK_OUTPUT_DIR}" + COMPILE_FLAGS "${BENCHMARK_TEST_LIBCXX_COMPILE_FLAGS}" + LINK_FLAGS "${BENCHMARK_TEST_LIBCXX_LINK_FLAGS}") + if (LIBCXX_BENCHMARK_NATIVE_STDLIB) + set(native_target ${name}_native) + add_executable(${native_target} EXCLUDE_FROM_ALL ${source_file}) + add_dependencies(${native_target} google-benchmark-native + google-benchmark-libcxx) + target_link_libraries(${native_target} -lbenchmark) + if (LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libstdc++") + target_link_libraries(${native_target} -lstdc++fs) + elseif (LIBCXX_BENCHMARK_NATIVE_STDLIB STREQUAL "libc++") + target_link_libraries(${native_target} -lc++experimental) + endif() + if (LIBCXX_HAS_PTHREAD_LIB) + target_link_libraries(${native_target} -pthread) + endif() + add_dependencies(cxx-benchmarks ${native_target}) + set_target_properties(${native_target} + PROPERTIES + OUTPUT_NAME "${name}.native.out" + RUNTIME_OUTPUT_DIRECTORY "${BENCHMARK_OUTPUT_DIR}" + INCLUDE_DIRECTORIES "" + COMPILE_FLAGS "${BENCHMARK_TEST_NATIVE_COMPILE_FLAGS}" + LINK_FLAGS "${BENCHMARK_TEST_NATIVE_LINK_FLAGS}") + endif() +endmacro() + + +#============================================================================== +# Register Benchmark tests +#============================================================================== +file(GLOB BENCHMARK_TESTS "*.bench.cpp") +foreach(test_path ${BENCHMARK_TESTS}) + get_filename_component(test_file "${test_path}" NAME) + string(REPLACE ".bench.cpp" "" test_name "${test_file}") + if (NOT DEFINED ${test_name}_REPORTED) + message(STATUS "Adding Benchmark: ${test_file}") + # Only report the adding of the benchmark once. + set(${test_name}_REPORTED ON CACHE INTERNAL "") + endif() + add_benchmark_test(${test_name} ${test_file}) +endforeach() diff --git a/benchmarks/ContainerBenchmarks.hpp b/benchmarks/ContainerBenchmarks.hpp new file mode 100644 index 000000000..509e3d23e --- /dev/null +++ b/benchmarks/ContainerBenchmarks.hpp @@ -0,0 +1,113 @@ +#ifndef BENCHMARK_CONTAINER_BENCHMARKS_HPP +#define BENCHMARK_CONTAINER_BENCHMARKS_HPP + +#include + +#include "benchmark/benchmark.h" + +namespace ContainerBenchmarks { + + +template +void BM_ConstructIterIter(benchmark::State& st, Container, GenInputs gen) { + auto in = gen(st.range(0)); + const auto begin = in.begin(); + const auto end = in.end(); + benchmark::DoNotOptimize(&in); + while (st.KeepRunning()) { + Container c(begin, end); + benchmark::DoNotOptimize(c.data()); + } +} + +template +void BM_InsertValue(benchmark::State& st, Container c, GenInputs gen) { + auto in = gen(st.range(0)); + const auto end = in.end(); + while (st.KeepRunning()) { + c.clear(); + for (auto it = in.begin(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.insert(*it).first)); + } + benchmark::ClobberMemory(); + } +} + +template +void BM_InsertValueRehash(benchmark::State& st, Container c, GenInputs gen) { + auto in = gen(st.range(0)); + const auto end = in.end(); + while (st.KeepRunning()) { + c.clear(); + c.rehash(16); + for (auto it = in.begin(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.insert(*it).first)); + } + benchmark::ClobberMemory(); + } +} + + +template +void BM_InsertDuplicate(benchmark::State& st, Container c, GenInputs gen) { + auto in = gen(st.range(0)); + const auto end = in.end(); + c.insert(in.begin(), in.end()); + benchmark::DoNotOptimize(&c); + benchmark::DoNotOptimize(&in); + while (st.KeepRunning()) { + for (auto it = in.begin(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.insert(*it).first)); + } + benchmark::ClobberMemory(); + } +} + + +template +void BM_EmplaceDuplicate(benchmark::State& st, Container c, GenInputs gen) { + auto in = gen(st.range(0)); + const auto end = in.end(); + c.insert(in.begin(), in.end()); + benchmark::DoNotOptimize(&c); + benchmark::DoNotOptimize(&in); + while (st.KeepRunning()) { + for (auto it = in.begin(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.emplace(*it).first)); + } + benchmark::ClobberMemory(); + } +} + +template +static void BM_Find(benchmark::State& st, Container c, GenInputs gen) { + auto in = gen(st.range(0)); + c.insert(in.begin(), in.end()); + benchmark::DoNotOptimize(&(*c.begin())); + const auto end = in.data() + in.size(); + while (st.KeepRunning()) { + for (auto it = in.data(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.find(*it))); + } + benchmark::ClobberMemory(); + } +} + +template +static void BM_FindRehash(benchmark::State& st, Container c, GenInputs gen) { + c.rehash(8); + auto in = gen(st.range(0)); + c.insert(in.begin(), in.end()); + benchmark::DoNotOptimize(&(*c.begin())); + const auto end = in.data() + in.size(); + while (st.KeepRunning()) { + for (auto it = in.data(); it != end; ++it) { + benchmark::DoNotOptimize(&(*c.find(*it))); + } + benchmark::ClobberMemory(); + } +} + +} // end namespace ContainerBenchmarks + +#endif // BENCHMARK_CONTAINER_BENCHMARKS_HPP diff --git a/benchmarks/GenerateInput.hpp b/benchmarks/GenerateInput.hpp new file mode 100644 index 000000000..8c97f5881 --- /dev/null +++ b/benchmarks/GenerateInput.hpp @@ -0,0 +1,144 @@ +#ifndef BENCHMARK_GENERATE_INPUT_HPP +#define BENCHMARK_GENERATE_INPUT_HPP + +#include +#include +#include +#include +#include +#include + +static const char Letters[] = { + '0','1','2','3','4', + '5','6','7','8','9', + 'A','B','C','D','E','F', + 'G','H','I','J','K', + 'L','M','N','O','P', + 'Q','R','S','T','U', + 'V','W','X','Y','Z', + 'a','b','c','d','e','f', + 'g','h','i','j','k', + 'l','m','n','o','p', + 'q','r','s','t','u', + 'v','w','x','y','z' +}; +static const std::size_t LettersSize = sizeof(Letters); + +inline std::default_random_engine& getRandomEngine() { + static std::default_random_engine RandEngine(std::random_device{}()); + return RandEngine; +} + + +inline char getRandomChar() { + std::uniform_int_distribution<> LettersDist(0, LettersSize-1); + return Letters[LettersDist(getRandomEngine())]; +} + +template +inline IntT getRandomInteger(IntT Min = 0, + IntT Max = std::numeric_limits::max()) { + std::uniform_int_distribution dist(Min, Max); + return dist(getRandomEngine()); +} + +inline std::string getRandomString(std::size_t Len) { + std::string str(Len, 0); + std::generate_n(str.begin(), Len, &getRandomChar); + return str; +} + +template +inline std::vector getDuplicateIntegerInputs(size_t N) { + std::vector inputs(N, static_cast(-1)); + return inputs; +} + +template +inline std::vector getSortedIntegerInputs(size_t N) { + std::vector inputs; + for (size_t i=0; i < N; i += 1) + inputs.push_back(i); + return inputs; +} + +template +std::vector getSortedLargeIntegerInputs(size_t N) { + std::vector inputs; + for (size_t i=0; i < N; ++i) { + inputs.push_back(i + N); + } + return inputs; +} + +template +std::vector getSortedTopBitsIntegerInputs(size_t N) { + std::vector inputs = getSortedIntegerInputs(N); + for (auto& E : inputs) E <<= ((sizeof(IntT) / 2) * CHAR_BIT); + return inputs; +} + +template +inline std::vector getReverseSortedIntegerInputs(size_t N) { + std::vector inputs; + std::size_t i = N; + while (i > 0) { + --i; + inputs.push_back(i); + } + return inputs; +} + +template +std::vector getPipeOrganIntegerInputs(size_t N) { + std::vector v; v.reserve(N); + for (size_t i = 0; i < N/2; ++i) v.push_back(i); + for (size_t i = N/2; i < N; ++i) v.push_back(N - i); + return v; +} + + +template +std::vector getRandomIntegerInputs(size_t N) { + std::vector inputs; + for (size_t i=0; i < N; ++i) { + inputs.push_back(getRandomInteger()); + } + return inputs; +} + +inline std::vector getDuplicateStringInputs(size_t N) { + std::vector inputs(N, getRandomString(1024)); + return inputs; +} + +inline std::vector getRandomStringInputs(size_t N) { + std::vector inputs; + for (size_t i=0; i < N; ++i) { + inputs.push_back(getRandomString(1024)); + } + return inputs; +} + +inline std::vector getSortedStringInputs(size_t N) { + std::vector inputs = getRandomStringInputs(N); + std::sort(inputs.begin(), inputs.end()); + return inputs; +} + +inline std::vector getReverseSortedStringInputs(size_t N) { + std::vector inputs = getSortedStringInputs(N); + std::reverse(inputs.begin(), inputs.end()); + return inputs; +} + +inline std::vector getRandomCStringInputs(size_t N) { + static std::vector inputs = getRandomStringInputs(N); + std::vector cinputs; + for (auto const& str : inputs) + cinputs.push_back(str.c_str()); + return cinputs; +} + + +#endif // BENCHMARK_GENERATE_INPUT_HPP diff --git a/benchmarks/algorithms.bench.cpp b/benchmarks/algorithms.bench.cpp new file mode 100644 index 000000000..86315390e --- /dev/null +++ b/benchmarks/algorithms.bench.cpp @@ -0,0 +1,62 @@ +#include +#include +#include + +#include "benchmark/benchmark.h" +#include "GenerateInput.hpp" + +constexpr std::size_t TestNumInputs = 1024; + +template +void BM_Sort(benchmark::State& st, GenInputs gen) { + using ValueType = typename decltype(gen(0))::value_type; + const auto in = gen(st.range(0)); + std::vector inputs[5]; + auto reset_inputs = [&]() { + for (auto& C : inputs) { + C = in; + benchmark::DoNotOptimize(C.data()); + } + }; + reset_inputs(); + while (st.KeepRunning()) { + for (auto& I : inputs) { + std::sort(I.data(), I.data() + I.size()); + benchmark::DoNotOptimize(I.data()); + } + st.PauseTiming(); + reset_inputs(); + benchmark::ClobberMemory(); + st.ResumeTiming(); + } +} + +BENCHMARK_CAPTURE(BM_Sort, random_uint32, + getRandomIntegerInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, sorted_ascending_uint32, + getSortedIntegerInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, sorted_descending_uint32, + getReverseSortedIntegerInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, single_element_uint32, + getDuplicateIntegerInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, pipe_organ_uint32, + getPipeOrganIntegerInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, random_strings, + getRandomStringInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, sorted_ascending_strings, + getSortedStringInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, sorted_descending_strings, + getReverseSortedStringInputs)->Arg(TestNumInputs); + +BENCHMARK_CAPTURE(BM_Sort, single_element_strings, + getDuplicateStringInputs)->Arg(TestNumInputs); + + +BENCHMARK_MAIN(); diff --git a/benchmarks/filesystem.bench.cpp b/benchmarks/filesystem.bench.cpp new file mode 100644 index 000000000..3e4956059 --- /dev/null +++ b/benchmarks/filesystem.bench.cpp @@ -0,0 +1,163 @@ +#include "benchmark/benchmark.h" +#include "GenerateInput.hpp" +#include "test_iterators.h" +#include "filesystem_include.hpp" + +static const size_t TestNumInputs = 1024; + + +template +void BM_PathConstructString(benchmark::State &st, GenInputs gen) { + using fs::path; + const auto in = gen(st.range(0)); + path PP; + for (auto& Part : in) + PP /= Part; + benchmark::DoNotOptimize(PP.native().data()); + while (st.KeepRunning()) { + const path P(PP.native()); + benchmark::DoNotOptimize(P.native().data()); + } + st.SetComplexityN(st.range(0)); +} +BENCHMARK_CAPTURE(BM_PathConstructString, large_string, + getRandomStringInputs)->Range(8, TestNumInputs)->Complexity(); + + +template +void BM_PathConstructCStr(benchmark::State &st, GenInputs gen) { + using fs::path; + const auto in = gen(st.range(0)); + path PP; + for (auto& Part : in) + PP /= Part; + benchmark::DoNotOptimize(PP.native().data()); + while (st.KeepRunning()) { + const path P(PP.native().c_str()); + benchmark::DoNotOptimize(P.native().data()); + } +} +BENCHMARK_CAPTURE(BM_PathConstructCStr, large_string, + getRandomStringInputs)->Arg(TestNumInputs); + + +template