59a23a7441
Earlier ctest file creation was taking place during build time. Due to cmake framework issue the file creation had issues, which in turn failed the test build. This change moves this logic to the execution phase and gets rid of the unwanted dependency during build time Change-Id: Ifbf7e325f1b15a8be12e76560a6d339bc76705ee
9 linhas
282 B
CMake
9 linhas
282 B
CMake
add_custom_target(stress_test COMMAND "${CMAKE_CTEST_COMMAND}" -R "Stress_"
|
|
COMMENT "Build complete, now executing the stress test ...")
|
|
|
|
add_subdirectory(memory)
|
|
if(HIP_PLATFORM MATCHES "amd")
|
|
add_subdirectory(printf)
|
|
add_subdirectory(stream)
|
|
endif()
|