From ebe2e4f5b773e73e3a0d50804e3c72aed6b90b9f Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Tue, 24 May 2022 15:47:41 +0200 Subject: [PATCH] [libcxx] Add sort.bench.cpp to libcxx/benchmarks/CMakeLists.txt It was forgotten in D124740. Differential revision: https://reviews.llvm.org/D126297 --- libcxx/benchmarks/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcxx/benchmarks/CMakeLists.txt b/libcxx/benchmarks/CMakeLists.txt index 71b7315..7c13a5a 100644 --- a/libcxx/benchmarks/CMakeLists.txt +++ b/libcxx/benchmarks/CMakeLists.txt @@ -160,11 +160,12 @@ endfunction() # Register Benchmark tests #============================================================================== set(BENCHMARK_TESTS - algorithms/make_heap_then_sort_heap.bench.cpp algorithms/make_heap.bench.cpp + algorithms/make_heap_then_sort_heap.bench.cpp algorithms/min_max_element.bench.cpp algorithms/pop_heap.bench.cpp algorithms/push_heap.bench.cpp + algorithms/sort.bench.cpp algorithms/sort_heap.bench.cpp algorithms/stable_sort.bench.cpp algorithms.partition_point.bench.cpp -- 2.7.4