mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +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
|
|
@ -26,7 +26,7 @@ static void PrePadded(benchmark::Bench& bench)
|
|||
});
|
||||
}
|
||||
|
||||
BENCHMARK(PrePadded);
|
||||
BENCHMARK(PrePadded, benchmark::PriorityLevel::HIGH);
|
||||
|
||||
static void RegularPadded(benchmark::Bench& bench)
|
||||
{
|
||||
|
|
@ -44,4 +44,4 @@ static void RegularPadded(benchmark::Bench& bench)
|
|||
});
|
||||
}
|
||||
|
||||
BENCHMARK(RegularPadded);
|
||||
BENCHMARK(RegularPadded, benchmark::PriorityLevel::HIGH);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue