diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-07-29 12:38:12 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-07-29 12:38:12 -0700 |
| commit | ac2cd14867f2f6d9d2c9055dfd6585ab04c08f03 (patch) | |
| tree | bd5d337c2a2e1cd58b530f4dcf3948686c4b5669 | |
| parent | fddb35e988384c7aa5d9aaf96c1e075bede7a188 (diff) | |
| download | rust-ac2cd14867f2f6d9d2c9055dfd6585ab04c08f03.tar.gz rust-ac2cd14867f2f6d9d2c9055dfd6585ab04c08f03.zip | |
mk: Rename CTEST_BENCH to TEST_BENCH
The CTEST prefix is specifically related to the compiletest driver
| -rw-r--r-- | mk/tests.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 9e0ccb5dbee..6b35cbdaf77 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -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 @@ -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 |
