benchmark/test
rolandschulz 9b92ed76a8 Fix ICC compiler warnings (#358)
fixes #354

The build fails with ICC17 because of warnings and Werror. What is the correct solution to fix it?
Should a patch

disable Werror for ICC (or maybe all non known compilers)
disable the false postive warnings for all files. This could be done using:
add_cxx_compiler_flag(-wd2102) #ICC17u2: Many false positives for Wstrict-aliasing
add_cxx_compiler_flag(-wd2259) #ICC17u2: non-pointer conversion from "long" to "int" may lose significant bits (even for explicit static cast, sleep.cc(44))
add_cxx_compiler_flag(-wd654) #ICC17u2: overloaded virtual function "benchmark::Fixture::SetUp" is only partially overridden (because of deprecated overload)
disable warnings at file level or some other granularity
2017-03-27 18:30:54 -06:00
..
CMakeLists.txt Increase complexity_test runtime slightly less. 2016-09-03 00:18:02 -06:00
basic_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
benchmark_test.cc Fix ICC compiler warnings (#358) 2017-03-27 18:30:54 -06:00
complexity_test.cc Fix #300. Emit RMS as a float not a percentage in JSON 2016-10-07 22:26:01 -06:00
cxx03_test.cc Add user-defined counters. (#262) 2017-03-01 17:23:42 -07:00
diagnostics_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
donotoptimize_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
filter_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
fixture_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
map_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
multiple_ranges_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
options_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
output_test.h Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
output_test_helper.cc Fix ICC compiler warnings (#358) 2017-03-27 18:30:54 -06:00
register_benchmark_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00
reporter_output_test.cc Add user-defined counters. (#262) 2017-03-01 17:23:42 -07:00
skip_with_error_test.cc Simplify clang-format and apply to tests (#302) 2016-10-07 11:04:50 -07:00