mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 07:09:15 +01: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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user