Skip to content

Commit

Permalink
mk: Rename CTEST_BENCH to TEST_BENCH
Browse files Browse the repository at this point in the history
The CTEST prefix is specifically related to the compiletest driver
  • Loading branch information
brson committed Jul 29, 2013
1 parent fddb35e commit ac2cd14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mk/tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ ifdef CHECK_XFAILS
TESTARGS += --ignored
endif

CTEST_BENCH = --bench
TEST_BENCH = --bench

# Arguments to the cfail/rfail/rpass/bench tests
ifdef CFG_VALGRIND
CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
CTEST_BENCH =
TEST_BENCH =
endif

# Arguments to the perf tests
Expand Down Expand Up @@ -69,12 +69,12 @@ TEST_RATCHET_NOISE_PERCENT=10.0
# Whether to ratchet or merely save benchmarks
ifdef CFG_RATCHET_BENCH
CRATE_TEST_BENCH_ARGS=\
--test $(CTEST_BENCH) \
--test $(TEST_BENCH) \
--ratchet-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4)) \
--ratchet-noise-percent $(TEST_RATCHET_NOISE_PERCENT)
else
CRATE_TEST_BENCH_ARGS=\
--test $(CTEST_BENCH) \
--test $(TEST_BENCH) \
--save-metrics $(call TEST_RATCHET_FILE,$(1),$(2),$(3),$(4))
endif

Expand Down

0 comments on commit ac2cd14

Please sign in to comment.