File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
libcxx/test/benchmarks/algorithms/partitions Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -166,14 +166,14 @@ int main(int argc, char** argv) {
166166 };
167167
168168 // std::stable_partition
169- bm.operator ()<std::vector<int >>(" std::stable_partition(vector<int>) (no alloc)" , std_stable_partition);
170- bm.operator ()<std::deque<int >>(" std::stable_partition(deque<int>) (no alloc)" , std_stable_partition);
171- bm.operator ()<std::list<int >>(" std::stable_partition(list<int>) (no alloc)" , std_stable_partition);
169+ bm.operator ()<std::vector<int >>(" std::stable_partition(vector<int>) (alloc fails )" , std_stable_partition);
170+ bm.operator ()<std::deque<int >>(" std::stable_partition(deque<int>) (alloc fails )" , std_stable_partition);
171+ bm.operator ()<std::list<int >>(" std::stable_partition(list<int>) (alloc fails )" , std_stable_partition);
172172
173173 // ranges::stable_partition
174- bm.operator ()<std::vector<int >>(" rng::stable_partition(vector<int>) (no alloc)" , std::ranges::stable_partition);
175- bm.operator ()<std::deque<int >>(" rng::stable_partition(deque<int>) (no alloc)" , std::ranges::stable_partition);
176- bm.operator ()<std::list<int >>(" rng::stable_partition(list<int>) (no alloc)" , std::ranges::stable_partition);
174+ bm.operator ()<std::vector<int >>(" rng::stable_partition(vector<int>) (alloc fails )" , std::ranges::stable_partition);
175+ bm.operator ()<std::deque<int >>(" rng::stable_partition(deque<int>) (alloc fails )" , std::ranges::stable_partition);
176+ bm.operator ()<std::list<int >>(" rng::stable_partition(list<int>) (alloc fails )" , std::ranges::stable_partition);
177177 }
178178
179179 benchmark::Initialize (&argc, argv);
You can’t perform that action at this time.
0 commit comments