2018-03-13 12:40:57 +01:00
|
|
|
-include ../tools.mk
|
|
|
|
|
2019-01-06 16:27:57 -05:00
|
|
|
# ignore-windows
|
|
|
|
|
2018-03-13 12:40:57 +01:00
|
|
|
all:
|
|
|
|
ifeq ($(PROFILER_SUPPORT),1)
|
2018-03-25 03:29:15 +02:00
|
|
|
$(RUSTC) -Copt-level=3 -Clto=fat -Z pgo-gen="$(TMPDIR)/test.profraw" test.rs
|
2018-03-13 12:40:57 +01:00
|
|
|
$(call RUN,test) || exit 1
|
|
|
|
[ -e "$(TMPDIR)/test.profraw" ] || (echo "No .profraw file"; exit 1)
|
|
|
|
endif
|