From d160a2bafa9df627fe9d003cd1945eb4fde7c955 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk <21087696+oleksandr-pavlyk@users.noreply.github.com> Date: Mon, 28 Jul 2025 12:03:42 -0500 Subject: [PATCH] Replace --run-once in testing/CMakeLists.txt with --profile --- testing/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt index 5ee7824..8792408 100644 --- a/testing/CMakeLists.txt +++ b/testing/CMakeLists.txt @@ -31,8 +31,8 @@ set(test_srcs # Custom arguments: # CTest commands+args can't be modified after creation, so we need to rely on substitution. -set(NVBench_TEST_ARGS_nvbench.test.custom_main_custom_args "--quiet" "--my-custom-arg" "--run-once" "-d" "0") -set(NVBench_TEST_ARGS_nvbench.test.custom_main_custom_exceptions "--quiet" "--run-once" "-d" "0") +set(NVBench_TEST_ARGS_nvbench.test.custom_main_custom_args "--quiet" "--my-custom-arg" "--profile" "-d" "0") +set(NVBench_TEST_ARGS_nvbench.test.custom_main_custom_exceptions "--quiet" "--profile" "-d" "0") # Metatarget for all tests: add_custom_target(nvbench.test.all)