From c1660174454d5baccf10efdc9bf634624ee18ff5 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Mon, 19 Jan 2015 10:59:57 -0800 Subject: [PATCH] Fix `make check PLEASE_BENCH=1` 611ef49f2fa573edf9cff4442eddb8ee7e48878d removed all the metrics stuff from tests.mk, but this meant that `PLEASE_BENCH=1` no longer did anything. Fixes #21324. --- mk/tests.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mk/tests.mk b/mk/tests.mk index c8c4beb1153..933cbce0cc6 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -38,16 +38,14 @@ ifdef CHECK_IGNORED TESTARGS += --ignored endif -TEST_BENCH = # Arguments to the cfail/rfail/rpass/bench tests ifdef CFG_VALGRIND CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)" - TEST_BENCH = endif ifdef PLEASE_BENCH - TEST_BENCH = --bench + TESTARGS += --bench endif # Arguments to the perf tests