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:
furszy
2022-09-25 12:25:16 -03:00
parent 05b8c76232
commit 3da7cd2a76
33 changed files with 93 additions and 93 deletions

View File

@@ -32,5 +32,5 @@ static void Bech32Decode(benchmark::Bench& bench)
}
BENCHMARK(Bech32Encode);
BENCHMARK(Bech32Decode);
BENCHMARK(Bech32Encode, benchmark::PriorityLevel::HIGH);
BENCHMARK(Bech32Decode, benchmark::PriorityLevel::HIGH);