mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
bench: explicitly make all current benchmarks "high" priority
no-functional changes. Only have set the priority level explicitly on every BENCHMARK macro call.
This commit is contained in:
parent
05b8c76232
commit
3da7cd2a76
33 changed files with 93 additions and 93 deletions
|
|
@ -85,12 +85,12 @@ static void PrevectorDeserialize(benchmark::Bench& bench)
|
|||
{ \
|
||||
Prevector##name<nontrivial_t>(bench); \
|
||||
} \
|
||||
BENCHMARK(Prevector##name##Nontrivial); \
|
||||
BENCHMARK(Prevector##name##Nontrivial, benchmark::PriorityLevel::HIGH); \
|
||||
static void Prevector##name##Trivial(benchmark::Bench& bench) \
|
||||
{ \
|
||||
Prevector##name<trivial_t>(bench); \
|
||||
} \
|
||||
BENCHMARK(Prevector##name##Trivial);
|
||||
BENCHMARK(Prevector##name##Trivial, benchmark::PriorityLevel::HIGH);
|
||||
|
||||
PREVECTOR_TEST(Clear)
|
||||
PREVECTOR_TEST(Destructor)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue