aboutsummaryrefslogtreecommitdiffstats
path: root/tests/perf/convperf.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Use stdint typesPierre Ossman2023-02-011-9/+9
| | | | | Avoid having our own custom stuff and instead use the modern, standard types, for familiarity.
* Explicitly mark unused parametersPierre Ossman2023-01-041-5/+9
| | | | | This allows us to separate accidentally unused, from explicitly unused parameters, which allows us to turn on such checks in the compiler.
* Be consistent in including config.hPierre Ossman2021-12-301-0/+4
| | | | | | The generally recommended way is to include it from source files, not headers. We had a mix of both. Let's try to be consistent and follow the recommended way.
* Split test programs to benchmarking and unit testsPierre Ossman2019-09-251-0/+224
They have very different purpose, so make things easier to work with by having multiple directories.