]> git.lizzy.rs Git - rust.git/commitdiff
mk: Rename CTEST_BENCH to TEST_BENCH
authorBrian Anderson <banderson@mozilla.com>
Mon, 29 Jul 2013 19:38:12 +0000 (12:38 -0700)
committerBrian Anderson <banderson@mozilla.com>
Mon, 29 Jul 2013 19:38:12 +0000 (12:38 -0700)
The CTEST prefix is specifically related to the compiletest driver

mk/tests.mk

index 9e0ccb5dbeed6c00e9c51c60851596fc862b3236..6b35cbdaf772e1fc51600045a6d6ae07d040c1f0 100644 (file)
@@ -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