You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This recipe is useful when wanting to glob for C++ benchmark files (e.g., run all C++ benchmarks for a particular package).
91
+
92
+
#### benchmark-cpp-files
93
+
94
+
Runs a specified list of C++ benchmark files.
95
+
96
+
<!-- run-disable -->
97
+
98
+
```bash
99
+
$ make benchmark-cpp-files FILES='/foo/benchmark.cpp /bar/benchmark.cpp'
100
+
```
101
+
102
+
The recipe recognizes the following environment variables:
103
+
104
+
-**FILES**: list of C++ benchmark files.
105
+
-**CXX_COMPILER**: C++ compiler; e.g., `g++`.
106
+
107
+
This recipe is useful when wanting to run a list of C++ benchmark files generated by some other command (e.g., a filtered list of changed C++ benchmark files obtained via `git diff`).
0 commit comments