1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
#ifndef __HAYAI
#define __HAYAI
#include "hayai_benchmarker.hpp"
#include "hayai_test.hpp"
#include "hayai_default_test_factory.hpp"
#include "hayai_fixture.hpp"
#include "hayai_console_outputter.hpp"
#include "hayai_json_outputter.hpp"
#include "hayai_junit_xml_outputter.hpp"
#define HAYAI_VERSION "1.0.1"
#define BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) \
fixture_name ## _ ## benchmark_name ## _Benchmark
#define BENCHMARK_(fixture_name, \
benchmark_name, \
fixture_class_name, \
runs, \
iterations) \
class BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) \
: public fixture_class_name \
{ \
public: \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)() \
{ \
\
} \
protected: \
virtual void TestBody(); \
private: \
static const ::hayai::TestDescriptor* _descriptor; \
}; \
\
const ::hayai::TestDescriptor* \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::_descriptor = \
::hayai::Benchmarker::Instance().RegisterTest( \
#fixture_name, \
#benchmark_name, \
runs, \
iterations, \
new ::hayai::TestFactoryDefault< \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) \
>(), \
::hayai::TestParametersDescriptor()); \
\
void BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::TestBody()
#define BENCHMARK_F(fixture_name, \
benchmark_name, \
runs, \
iterations) \
BENCHMARK_(fixture_name, \
benchmark_name, \
fixture_name, \
runs, \
iterations)
#define BENCHMARK(fixture_name, \
benchmark_name, \
runs, \
iterations) \
BENCHMARK_(fixture_name, \
benchmark_name, \
::hayai::Test, \
runs, \
iterations)
// Parametrized benchmarks.
#define BENCHMARK_P_(fixture_name, \
benchmark_name, \
fixture_class_name, \
runs, \
iterations, \
arguments) \
class BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) \
: public fixture_class_name { \
public: \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) () {} \
virtual ~ BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) () {} \
static const std::size_t _runs = runs; \
static const std::size_t _iterations = iterations; \
static const char* _argumentsDeclaration() { return #arguments; } \
protected: \
inline void TestPayload arguments; \
}; \
void BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::TestPayload arguments
#define BENCHMARK_P(fixture_name, \
benchmark_name, \
runs, \
iterations, \
arguments) \
BENCHMARK_P_(fixture_name, \
benchmark_name, \
hayai::Fixture, \
runs, \
iterations, \
arguments)
#define BENCHMARK_P_F(fixture_name, benchmark_name, runs, iterations, arguments) \
BENCHMARK_P_(fixture_name, benchmark_name, fixture_name, runs, iterations, arguments)
#define BENCHMARK_P_CLASS_NAME_(fixture_name, benchmark_name, id) \
fixture_name ## _ ## benchmark_name ## _Benchmark_ ## id
#define BENCHMARK_P_INSTANCE1(fixture_name, benchmark_name, arguments, id) \
class BENCHMARK_P_CLASS_NAME_(fixture_name, benchmark_name, id): \
public BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name) { \
protected: \
virtual void TestBody() { this->TestPayload arguments; } \
private: \
static const ::hayai::TestDescriptor* _descriptor; \
}; \
const ::hayai::TestDescriptor* BENCHMARK_P_CLASS_NAME_(fixture_name, benchmark_name, id)::_descriptor = \
::hayai::Benchmarker::Instance().RegisterTest( \
#fixture_name, #benchmark_name, \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::_runs, \
BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::_iterations, \
new ::hayai::TestFactoryDefault< BENCHMARK_P_CLASS_NAME_(fixture_name, benchmark_name, id) >(), \
::hayai::TestParametersDescriptor(BENCHMARK_CLASS_NAME_(fixture_name, benchmark_name)::_argumentsDeclaration(), #arguments))
#if defined(__COUNTER__)
# define BENCHMARK_P_ID_ __COUNTER__
#else
# define BENCHMARK_P_ID_ __LINE__
#endif
#define BENCHMARK_P_INSTANCE(fixture_name, benchmark_name, arguments) \
BENCHMARK_P_INSTANCE1(fixture_name, benchmark_name, arguments, BENCHMARK_P_ID_)
#endif
|