13 lines
338 B
Makefile
13 lines
338 B
Makefile
include ../tools.mk
|
|
|
|
# ignore-cross-compile
|
|
# needs-unwind #[bench] and -Zpanic-abort-tests can't be combined
|
|
|
|
all:
|
|
# Smoke-test that `#[bench]` isn't entirely broken.
|
|
$(RUSTC) --test smokebench.rs -O
|
|
$(call RUN,smokebench --bench)
|
|
$(call RUN,smokebench --bench noiter)
|
|
$(call RUN,smokebench --bench yesiter)
|
|
$(call RUN,smokebench)
|