diff options
| author | Barosl LEE <github@barosl.com> | 2015-01-21 02:16:52 +0900 |
|---|---|---|
| committer | Barosl LEE <github@barosl.com> | 2015-01-21 02:16:52 +0900 |
| commit | 5b57aa757b70bae7d7014a677ff80aaf5d89fdb8 (patch) | |
| tree | 759f513cf49c40608f5dd5531a3dd7116196d259 | |
| parent | 8d05f6c74c34c1d72fd91be3057fe7d4581aca3a (diff) | |
| parent | c1660174454d5baccf10efdc9bf634624ee18ff5 (diff) | |
Rollup merge of #21399 - kballard:fix-PLEASE_BENCH, r=Gankro
611ef49f2fa573edf9cff4442eddb8ee7e48878d removed all the metrics stuff from tests.mk, but this meant that `PLEASE_BENCH=1` no longer did anything. Fixes #21324.
| -rw-r--r-- | mk/tests.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 10452d91275..02cc745803f 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 |
