aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIS <133409570+iakovs@users.noreply.github.com>2023-12-20 09:54:55 +0000
committerGitHub <noreply@github.com>2023-12-20 09:54:55 +0000
commit6b7e86c5c85095d7a46eaba203d3c4450a445782 (patch)
treef64df24c8732734f660f51f171723460461f47ad
parent9a0422eb2319cbfa9e6dd9915ab212478cfcf83a (diff)
downloadgoogle-benchmark-6b7e86c5c85095d7a46eaba203d3c4450a445782.tar.gz
Fix mis-matching argument in closing tag for cmake macro (#1714) (#1715)
Co-authored-by: Iakov Sergeev <yahontu@gmail.com>
-rw-r--r--CONTRIBUTORS1
-rw-r--r--test/CMakeLists.txt2
2 files changed, 2 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index b3d1d58..9ca2caa 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -56,6 +56,7 @@ Gergő Szitár <szitar.gergo@gmail.com>
Hannes Hauswedell <h2@fsfe.org>
Henrique Bucher <hbucher@gmail.com>
Ismael Jimenez Martinez <ismael.jimenez.martinez@gmail.com>
+Iakov Sergeev <yahontu@gmail.com>
Jern-Kuan Leong <jernkuan@gmail.com>
JianXiong Zhou <zhoujianxiong2@gmail.com>
Joao Paulo Magalhaes <joaoppmagalhaes@gmail.com>
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index d211908..eb7137e 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -70,7 +70,7 @@ macro(benchmark_add_test)
cmake_parse_arguments(TEST "" "NAME" "" ${ARGN})
set_tests_properties(${TEST_NAME} PROPERTIES ENVIRONMENT_MODIFICATION "PATH=path_list_prepend:$<TARGET_FILE_DIR:benchmark::benchmark>")
endif()
-endmacro(compile_output_test)
+endmacro(benchmark_add_test)
# Demonstration executable
compile_benchmark_test(benchmark_test)