teak-llvm/libcxx/test/std/algorithms/alg.modifying.operations
Stephan T. Lavavej 79e0733c20 [libcxx] [test] Fix MSVC warnings, null pointer deref.
test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp
Silence MSVC warning C4244. This is expected when passing
floating-point values for size.

test/std/utilities/template.bitset/bitset.members/to_ullong.pass.cpp
test/std/utilities/template.bitset/bitset.members/to_ulong.pass.cpp
Avoid MSVC "warning C4293: '<<': shift count negative or too big,
undefined behavior". MSVC sees (1ULL << N) and warns - being guarded
by const bool canFit is insufficient. A small change to the code
avoids the warning without the need for a pragma.

Remove a spurious printf() declaration from to_ullong.pass.cpp.

Change ULL to UL in to_ulong.pass.cpp. The ULL suffix was
probably copy-pasted.

test/std/utilities/tuple/tuple.general/ignore.pass.cpp
Use LIBCPP_STATIC_ASSERT for consistency with other files.

test/support/container_test_types.h
Fix a null pointer dereference, found by MSVC /analyze
warning C6011 "Dereferencing NULL pointer 'm_expected_args'."

Fixes D41030.

llvm-svn: 320535
2017-12-13 00:51:27 +00:00
..
alg.copy [libcxx] Properly convert the count arguments to the *_n algorithms before use. 2015-02-10 16:46:42 +00:00
alg.fill Work around more -Wshadow warnings 2016-12-03 02:26:28 +00:00
alg.generate [libcxx] [test] Fix MSVC warnings, null pointer deref. 2017-12-13 00:51:27 +00:00
alg.move Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm 2017-04-18 23:26:47 +00:00
alg.partitions Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm 2017-04-18 23:26:47 +00:00
alg.random.sample [libcxx] [test] D27022: Fix MSVC warning C4389 "signed/unsigned mismatch", part 9/12. 2016-12-06 01:13:14 +00:00
alg.random.shuffle Use 'REQUIRES: c++98 || c++03 || c++11 || c++14' instead of the deprecated 'REQUIRES-ANY: c++98, c++03, c++11, c++14' 2017-03-23 14:20:43 +00:00
alg.remove [libcxx] [test] Strip trailing whitespace. NFC. 2017-05-04 01:43:58 +00:00
alg.replace Update the algorithm tests to not use the (deprecated) function binders. No functional change. 2017-03-23 16:13:50 +00:00
alg.reverse
alg.rotate Enable the -Wsign-compare warning to better support MSVC 2016-12-11 05:31:00 +00:00
alg.swap Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm 2017-04-18 23:26:47 +00:00
alg.transform Update the algorithm tests to not use the (deprecated) function binders. No functional change. 2017-03-23 16:13:50 +00:00
alg.unique Cleanup _LIBCPP_HAS_NO_<c++11-feature> in algorithm 2017-04-18 23:26:47 +00:00
nothing_to_do.pass.cpp