Skip to content

Commit eea888a

Browse files
committed
Add missing BENCH_TESTS variable to tests.mk
1 parent 07950c8 commit eea888a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mk/tests.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs \
66
$(S)src/test/*/*/*.rs \
77
$(S)src/test/*/*.rc)
88

9-
BENCH_RS := $(wildcard $(S)src/test/bench/*.rs) \
9+
BENCH_RS := $(wildcard $(S)src/test/bench/*.rs)
1010
RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
1111
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
1212
RFAIL_RC := $(wildcard $(S)src/test/run-fail/*.rc)
@@ -17,6 +17,7 @@ CFAIL_RS := $(wildcard $(S)src/test/compile-fail/*.rs)
1717
RPASS_TESTS := $(RPASS_RC) $(RPASS_RS)
1818
RFAIL_TESTS := $(RFAIL_RC) $(RFAIL_RS)
1919
CFAIL_TESTS := $(CFAIL_RC) $(CFAIL_RS)
20+
BENCH_TESTS := $(BENCH_RS)
2021

2122
FT := run_pass_stage2
2223
FT_LIB := $(call CFG_LIB_NAME,$(FT))

0 commit comments

Comments
 (0)