From 977e8796e8ac45f87a99e3c4053f6f5a41761ee4 Mon Sep 17 00:00:00 2001 From: John-Paul Robinson Date: Tue, 25 Jun 2024 15:25:39 -0500 Subject: [PATCH] Fix the test name executable for normal dist test (#123) The h5bench.py and documenation name and reference this test as h5bench_write_var_normal_dist but the compiled target is missing the "var" substring so the test is not callable from a json config file. Fixing the binary name aligns the test with its expected calling convention. Co-authored-by: Jean Luca Bez --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7195992..cf22a01 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,8 +125,8 @@ endif() set(h5bench_write_normal_dist_src h5bench_patterns/h5bench_write_normal_dist.c) -add_executable(h5bench_write_normal_dist ${h5bench_write_normal_dist_src}) -target_link_libraries(h5bench_write_normal_dist h5bench_util hdf5 z m ${CMAKE_DL_LIBS} MPI::MPI_C) +add_executable(h5bench_write_var_normal_dist ${h5bench_write_normal_dist_src}) +target_link_libraries(h5bench_write_var_normal_dist h5bench_util hdf5 z m ${CMAKE_DL_LIBS} MPI::MPI_C) # h5bench WRITE ############################################################### # @@ -355,7 +355,7 @@ install( TARGETS h5bench_write h5bench_write_unlimited - h5bench_write_normal_dist + h5bench_write_var_normal_dist h5bench_overwrite h5bench_append h5bench_read