mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
2646db92fe
The profiler runtime is no longer built in mingw test jobs, so these tests should naturally be skipped by `//@ needs-profiler-support`.
12 lines
283 B
Makefile
12 lines
283 B
Makefile
# needs-profiler-support
|
|
# ignore-cross-compile
|
|
|
|
include ../tools.mk
|
|
|
|
COMPILE_FLAGS=-Copt-level=3 -Clto=fat -Cprofile-generate="$(TMPDIR)"
|
|
|
|
all:
|
|
$(RUSTC) $(COMPILE_FLAGS) test.rs
|
|
$(call RUN,test) || exit 1
|
|
[ -e "$(TMPDIR)"/default_*.profraw ] || (echo "No .profraw file"; exit 1)
|