bench: drop NO_THREAD_SAFETY_ANALYSIS from disconnected_txs

pull/28557/head
fanquake 1 year ago
parent 8909667ab8
commit d67aa25eb2
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

@ -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);
});
}

Loading…
Cancel
Save