mirror of
https://github.com/boostorg/container.git
synced 2026-07-05 11:20:46 +02:00
Put fastest, allocation only, tests first to avoid allocation pollution for subsequent tests
This commit is contained in:
@@ -476,19 +476,18 @@ int main(int argc,char* argv[])
|
||||
using den = nest<element>;
|
||||
|
||||
table t;
|
||||
|
||||
t.push_back(benchmark(
|
||||
"creat, ins, erase, ins",
|
||||
create<num>{}, create<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"creat, ins, erase, ins, destroy",
|
||||
create_and_destroy<num>{}, create_and_destroy<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"for_each",
|
||||
for_each<num>{}, for_each<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"visit_all",
|
||||
visit_all<num>{}, visit_all<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"creat, ins, erase, ins",
|
||||
create<num>{}, create<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"creat, ins, erase, ins, destroy",
|
||||
create_and_destroy<num>{}, create_and_destroy<den>{}));
|
||||
t.push_back(benchmark(
|
||||
"sort",
|
||||
sort<num>{}, sort<den>{}));
|
||||
|
||||
Reference in New Issue
Block a user