Skip to content

Commit ac2cd14

Browse files
committed
mk: Rename CTEST_BENCH to TEST_BENCH
The CTEST prefix is specifically related to the compiletest driver
1 parent fddb35e commit ac2cd14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mk/tests.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ ifdef CHECK_XFAILS
3434
TESTARGS += --ignored
3535
endif
3636

37-
CTEST_BENCH = --bench
37+
TEST_BENCH = --bench
3838

3939
# Arguments to the cfail/rfail/rpass/bench tests
4040
ifdef CFG_VALGRIND
4141
CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
42-
CTEST_BENCH =
42+
TEST_BENCH =
4343
endif
4444

4545
# Arguments to the perf tests
@@ -69,12 +69,12 @@ TEST_RATCHET_NOISE_PERCENT=10.0
6969
# Whether to ratchet or merely save benchmarks
7070
ifdef CFG_RATCHET_BENCH
7171
CRATE_TEST_BENCH_ARGS=\
72-
--test $(CTEST_BENCH) \
72+
--test $(TEST_BENCH) \
7373
--ratchet-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) \
7474
--ratchet-noise-percent $(TEST_RATCHET_NOISE_PERCENT)
7575
else
7676
CRATE_TEST_BENCH_ARGS=\
77-
--test $(CTEST_BENCH) \
77+
--test $(TEST_BENCH) \
7878
--save-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4))
7979
endif
8080

0 commit comments

Comments
 (0)