I have a C++ Google Benchmark Program. It uses Google's BENCHMARK_MAIN()
method. Now I call and execute the compiled program with a Go script. Is there a way to pass arguments into my benchmark program? (I know the common way over a main method, but I'm not sure how to do it in Googletest, because it's implemented in benchmark_api.h
and I can't just change that.)
Update:
So far I copied out the macro body into my benchmark.cpp
and added a line. It is not a nice solution because possible changes from Google on this Macro (like a name changing or an added code line) wouldn't affect my copy. It is working at last.
int main (int argc, char** argv)
{
MyNamespace::conf = {argv[1]};
::benchmark::Initialize (&argc, argv);
::benchmark::RunSpecifiedBenchmarks ();
}
Hacking the whole
BENCHMARK_MAIN
function is of course one way to do it, but IMO it's really cumbersome and really ugly. So I'm just gonna propose a different approach:And then in your go script, you call the benchmark with a regex filter:
./prog_name --benchmark_filter=InsertRegexFilterHere
So for example:
./prog_name --benchmark_filter=TestBenchmark/benchmark_name2/5/35
The above example will call the benchmark and will pass "function_name2", 5 and 35 (these are the values for your chunksize and iteration count) and so the output will be something like: