blob: 8fc122515d0a330f71b7b9efd58e190c4f0b5343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
include ../../run-make-fulldeps/tools.mk
# ignore-cross-compile
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)
|