libwreport
3.29
|
Collect all existing benchmarks. More...
#include <benchmark.h>
Public Member Functions | |
void | add (Benchmark *b) |
Add a benchmark to this registry. | |
Static Public Member Functions | |
static Registry & | get () |
Get the static instance of the registry. | |
static void | basic_run (int argc, const char *argv[]) |
Basic implementation of a main function that runs all benchmarks linked into the program. More... | |
Data Fields | |
std::vector< Benchmark * > | benchmarks |
Collect all existing benchmarks.
|
static |
Basic implementation of a main function that runs all benchmarks linked into the program.
This allows to make a benchmark runner tool with just this code:
If you need different logic in your benchmark running code, you can use the source code of basic_run as a template for writing your own.