2015-04-06 21:00:06 +00:00
|
|
|
|
|
|
|
#include "benchmark/benchmark.h"
|
|
|
|
|
2015-04-06 23:04:12 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
2015-04-06 21:00:06 +00:00
|
|
|
class MyFixture : public ::benchmark::Fixture
|
|
|
|
{
|
2015-04-06 23:04:12 +00:00
|
|
|
public:
|
|
|
|
void SetUp() {
|
|
|
|
data = new int(42);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TearDown() {
|
|
|
|
assert(data != nullptr);
|
|
|
|
delete data;
|
|
|
|
data = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
~MyFixture() {
|
|
|
|
assert(data == nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
int* data;
|
2015-04-06 21:00:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BENCHMARK_F(MyFixture, Foo)(benchmark::State& st) {
|
2015-04-06 23:04:12 +00:00
|
|
|
assert(data != nullptr);
|
|
|
|
assert(*data == 42);
|
2015-04-06 21:00:06 +00:00
|
|
|
while (st.KeepRunning()) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BENCHMARK_DEFINE_F(MyFixture, Bar)(benchmark::State& st) {
|
|
|
|
while (st.KeepRunning()) {
|
|
|
|
}
|
|
|
|
st.SetItemsProcessed(st.range_x());
|
|
|
|
}
|
|
|
|
BENCHMARK_REGISTER_F(MyFixture, Bar)->Arg(42);
|
|
|
|
|
|
|
|
|
|
|
|
BENCHMARK_MAIN()
|