summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/coverage-reports-deadcode/Makefile
blob: b6a9acbf18b3ca0319fe963aec922b74588c8ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# needs-profiler-support
# ignore-msvc
# ignore-windows-gnu

# FIXME(mati865): MinGW GCC miscompiles compiler-rt profiling library but with Clang it works
# properly. Since we only have GCC on the CI ignore the test for now.

# LINK_DEAD_CODE requires ignore-msvc due to Issue #76038
LINK_DEAD_CODE=yes

-include ../coverage-reports-base/Makefile

# ISSUE(76038): When targeting MSVC, Rust binaries built with both `-Z instrument-coverage` and
# `-C link-dead-code` typically crash (with a seg-fault) or at best generate an empty `*.profraw`.
# See ../coverage/coverage_tools.mk for more information.