From 4f9ba54fb175861ce6c303e4efcf1f90a136aa1e Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Mon, 6 Mar 2023 16:57:04 +0530 Subject: [PATCH] SWDEV-327563 - stress tests executable name change (#183) Helps to differentiate functional tests vs stress tests Change-Id: I6269fc58f21c9d4e8a71268006b8da926f0ddbe0 --- catch/stress/deviceallocation/CMakeLists.txt | 2 +- catch/stress/memory/CMakeLists.txt | 2 +- catch/stress/printf/CMakeLists.txt | 2 +- catch/stress/stream/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/catch/stress/deviceallocation/CMakeLists.txt b/catch/stress/deviceallocation/CMakeLists.txt index ee7eb2a580..1db7bef132 100644 --- a/catch/stress/deviceallocation/CMakeLists.txt +++ b/catch/stress/deviceallocation/CMakeLists.txt @@ -3,6 +3,6 @@ set(TEST_SRC Stress_deviceAllocationStress.cc ) -hip_add_exe_to_target(NAME devalloc +hip_add_exe_to_target(NAME devalloc_stress TEST_SRC ${TEST_SRC} TEST_TARGET_NAME stress_test) diff --git a/catch/stress/memory/CMakeLists.txt b/catch/stress/memory/CMakeLists.txt index bf172bd642..a455dea73d 100644 --- a/catch/stress/memory/CMakeLists.txt +++ b/catch/stress/memory/CMakeLists.txt @@ -7,6 +7,6 @@ set(TEST_SRC hipHostMallocStress.cc ) -hip_add_exe_to_target(NAME memory +hip_add_exe_to_target(NAME memory_stress TEST_SRC ${TEST_SRC} TEST_TARGET_NAME stress_test) diff --git a/catch/stress/printf/CMakeLists.txt b/catch/stress/printf/CMakeLists.txt index 1977d293f2..a1f6ac6b8f 100644 --- a/catch/stress/printf/CMakeLists.txt +++ b/catch/stress/printf/CMakeLists.txt @@ -4,6 +4,6 @@ set(TEST_SRC Stress_printf_SimpleKernels.cc ) -hip_add_exe_to_target(NAME printf +hip_add_exe_to_target(NAME printf_stress TEST_SRC ${TEST_SRC} TEST_TARGET_NAME stress_test) diff --git a/catch/stress/stream/CMakeLists.txt b/catch/stress/stream/CMakeLists.txt index ae6685da58..d3d6fd8644 100644 --- a/catch/stress/stream/CMakeLists.txt +++ b/catch/stress/stream/CMakeLists.txt @@ -4,7 +4,7 @@ set(TEST_SRC streamEnqueue.cc ) -hip_add_exe_to_target(NAME stream +hip_add_exe_to_target(NAME stream_stress TEST_SRC ${TEST_SRC} TEST_TARGET_NAME stress_test COMPILE_OPTIONS -std=c++14)