[libcxx-commits] [libcxx] ebe2e4f - [libcxx] Add sort.bench.cpp to libcxx/benchmarks/CMakeLists.txt

Hans Wennborg via libcxx-commits libcxx-commits at lists.llvm.org
Tue May 24 07:42:17 PDT 2022


Author: Hans Wennborg
Date: 2022-05-24T16:39:02+02:00
New Revision: ebe2e4f5b773e73e3a0d50804e3c72aed6b90b9f

URL: https://github.com/llvm/llvm-project/commit/ebe2e4f5b773e73e3a0d50804e3c72aed6b90b9f
DIFF: https://github.com/llvm/llvm-project/commit/ebe2e4f5b773e73e3a0d50804e3c72aed6b90b9f.diff

LOG: [libcxx] Add sort.bench.cpp to libcxx/benchmarks/CMakeLists.txt

It was forgotten in D124740.

Differential revision: https://reviews.llvm.org/D126297

Added: 
    

Modified: 
    libcxx/benchmarks/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libcxx/benchmarks/CMakeLists.txt b/libcxx/benchmarks/CMakeLists.txt
index 71b73158f4670..7c13a5a8f65c2 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


        


More information about the libcxx-commits mailing list