0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

bench: drop NO_THREAD_SAFETY_ANALYSIS from disconnected_txs

This commit is contained in:
fanquake 2023-10-02 11:54:55 +01:00
parent 8909667ab8
commit d67aa25eb2
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -98,7 +98,7 @@ static void AddAndRemoveDisconnectedBlockTransactionsAll(benchmark::Bench& bench
const auto chains{CreateBlocks(/*num_not_shared=*/1)};
assert(chains.num_shared == BLOCK_VTX_COUNT - 1);
bench.minEpochIterations(10).run([&]() NO_THREAD_SAFETY_ANALYSIS {
bench.minEpochIterations(10).run([&]() {
Reorg(chains);
});
}
@ -109,7 +109,7 @@ static void AddAndRemoveDisconnectedBlockTransactions90(benchmark::Bench& bench)
const auto chains{CreateBlocks(/*num_not_shared=*/BLOCK_VTX_COUNT_10PERCENT)};
assert(chains.num_shared == BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT);
bench.minEpochIterations(10).run([&]() NO_THREAD_SAFETY_ANALYSIS {
bench.minEpochIterations(10).run([&]() {
Reorg(chains);
});
}
@ -120,7 +120,7 @@ static void AddAndRemoveDisconnectedBlockTransactions10(benchmark::Bench& bench)
const auto chains{CreateBlocks(/*num_not_shared=*/BLOCK_VTX_COUNT - BLOCK_VTX_COUNT_10PERCENT)};
assert(chains.num_shared == BLOCK_VTX_COUNT_10PERCENT);
bench.minEpochIterations(10).run([&]() NO_THREAD_SAFETY_ANALYSIS {
bench.minEpochIterations(10).run([&]() {
Reorg(chains);
});
}