From 35d491159fbb852c26a2fc07dc874f0eddde3c47 Mon Sep 17 00:00:00 2001 From: "Madsen, Jonathan" Date: Thu, 24 Jul 2025 15:23:37 -0500 Subject: [PATCH] [CMake] Fix thread trace sample ENVIRONMENT test property (#544) Fix thread trace samples set tests properties [ROCm/rocprofiler-sdk commit: 735b5c3d4a8ace9ba41287a859486c842ef7686b] --- projects/rocprofiler-sdk/samples/thread_trace/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocprofiler-sdk/samples/thread_trace/CMakeLists.txt b/projects/rocprofiler-sdk/samples/thread_trace/CMakeLists.txt index 0c9c805631..e3dfd1151f 100644 --- a/projects/rocprofiler-sdk/samples/thread_trace/CMakeLists.txt +++ b/projects/rocprofiler-sdk/samples/thread_trace/CMakeLists.txt @@ -75,5 +75,5 @@ rocprofiler_samples_get_preload_env(PRELOAD_ENV) list(APPEND PRELOAD_ENV "ROCPROFILER_TRACE_DECODER_LIB_PATH=${attdecoder_LIB_DIR}") set_tests_properties( - thread-trace-sample PROPERTIES TIMEOUT 60 ENVIRONMENT ${PRELOAD_ENV} LABELS + thread-trace-sample PROPERTIES TIMEOUT 60 ENVIRONMENT "${PRELOAD_ENV}" LABELS "samples;thread-trace" DISABLED ${IS_DISABLED})