@@ -574,7 +574,8 @@ TEST_XFAILS_RUSTC := $(addprefix test/run-pass/, \
574
574
while-type-error.rs \
575
575
wrong-ret-type.rs \
576
576
) , \
577
- $(wildcard test/* fail/* .rs test/* fail/* .rc) )
577
+ $(wildcard test/* fail/* .rs test/* fail/* .rc) ) \
578
+ test/bench/shootout/fasta.rs
578
579
579
580
580
581
ifdef MINGW_CROSS
@@ -586,8 +587,10 @@ TEST_XFAILS_BOOT += test/run-pass/native-mod.rc
586
587
TEST_XFAILS_RUSTC += test/run-pass/native-mod.rc
587
588
endif
588
589
589
- RPASS_RC := $(wildcard test/run-pass/* .rc)
590
- RPASS_RS := $(wildcard test/run-pass/* .rs)
590
+ BENCH_RC := $(wildcard test/bench/shootout/* rc)
591
+ BENCH_RS := $(wildcard test/bench/shootout/* rs)
592
+ RPASS_RC := $(wildcard test/run-pass/* .rc) $(BENCH_RC )
593
+ RPASS_RS := $(wildcard test/run-pass/* .rs) $(BENCH_RS )
591
594
RFAIL_RC := $(wildcard test/run-fail/* .rc)
592
595
RFAIL_RS := $(wildcard test/run-fail/* .rs)
593
596
CFAIL_RC := $(wildcard test/compile-fail/* .rc)
@@ -731,6 +734,12 @@ test/run-pass/%.out.tmp: test/run-pass/%$(CFG_EXE_SUFFIX) $(CFG_RUNTIME)
731
734
@$(call CFG_ECHO, run: $< )
732
735
$(CFG_QUIET )$(call CFG_RUN_TARG, $< ) > $@
733
736
737
+ test/bench/shootout/% .out.tmp : test/bench/shootout/% $(CFG_EXE_SUFFIX ) \
738
+ $(CFG_RUNTIME)
739
+ $(CFG_QUIET)rm -f $<.tmp
740
+ @$(call CFG_ECHO, run: $<)
741
+ $(CFG_QUIET)$(call CFG_RUN_TARG, $<) > $@
742
+
734
743
test/run-fail/% .out.tmp : test/run-fail/% $(CFG_EXE_SUFFIX ) \
735
744
$(CFG_RUNTIME)
736
745
$(CFG_QUIET)rm -f $<.tmp
0 commit comments