diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-01-16 11:48:33 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-01-16 11:48:33 +0100 |
| commit | 0c74e2e89011053607327d8308025b6f952a3248 (patch) | |
| tree | b3fbb924a6300ee37ec53596b5dd4511f022d365 /src/bench | |
| parent | Merge #11904: Add a lock to the wallet directory (diff) | |
| download | discoin-0c74e2e89011053607327d8308025b6f952a3248.tar.xz discoin-0c74e2e89011053607327d8308025b6f952a3248.zip | |
Log debug build status and warn when running benchmarks
Log whether the starting instance of bitcoin core is a debug or release
build (--enable-debug).
Also warn when running the benchmarks with a debug build, to prevent
mistakes comparing debug to non-debug results.
Diffstat (limited to 'src/bench')
| -rw-r--r-- | src/bench/bench.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bench/bench.cpp b/src/bench/bench.cpp index dd120f359..21329a515 100644 --- a/src/bench/bench.cpp +++ b/src/bench/bench.cpp @@ -100,6 +100,9 @@ void benchmark::BenchRunner::RunAll(Printer& printer, uint64_t num_evals, double if (!std::ratio_less_equal<benchmark::clock::period, std::micro>::value) { std::cerr << "WARNING: Clock precision is worse than microsecond - benchmarks may be less accurate!\n"; } +#ifdef DEBUG + std::cerr << "WARNING: This is a debug build - may result in slower benchmarks.\n"; +#endif std::regex reFilter(filter); std::smatch baseMatch; |