3580478426
* Fix compilation for output library - link to targets for ATT (amd-comgr, dw, elf) * Relax correlation ID retirement log failures - only fail for correlation ID retirement underflow when building in CI mode * Fix shebang for several files - license was inserted before shebang in several places * Update code coverage exclude folders for samples * Tweak to agent tests - test to make sure hsa agent is not the old value instead of testing that it is the new value * Fix libdw include/link --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
59 خطوط
2.1 KiB
CMake
59 خطوط
2.1 KiB
CMake
#
|
|
#
|
|
#
|
|
|
|
rocprofiler_deactivate_clang_tidy()
|
|
|
|
add_executable(att-parser-tool-v3)
|
|
target_sources(att-parser-tool-v3 PRIVATE standalone_tool_main.cpp)
|
|
target_link_libraries(
|
|
att-parser-tool-v3
|
|
PRIVATE rocprofiler-sdk::rocprofiler-sdk-att-parser
|
|
rocprofiler-sdk::rocprofiler-sdk-json
|
|
rocprofiler-sdk::rocprofiler-sdk-common-library
|
|
rocprofiler-sdk::rocprofiler-sdk-dw)
|
|
|
|
add_executable(att-decoder-test)
|
|
target_sources(att-decoder-test PRIVATE att_decoder_test.cpp)
|
|
target_link_libraries(
|
|
att-decoder-test
|
|
PRIVATE rocprofiler-sdk::rocprofiler-sdk-att-parser
|
|
rocprofiler-sdk::rocprofiler-sdk-json
|
|
rocprofiler-sdk::rocprofiler-sdk-common-library
|
|
rocprofiler-sdk::rocprofiler-sdk-glog
|
|
rocprofiler-sdk::rocprofiler-sdk-static-library
|
|
rocprofiler-sdk::rocprofiler-sdk-dw
|
|
GTest::gtest
|
|
GTest::gtest_main)
|
|
|
|
add_library(att_decoder_testing1 SHARED)
|
|
add_library(rocprofiler-sdk::att-decoder-testing1 ALIAS att_decoder_testing1)
|
|
target_sources(att_decoder_testing1 PRIVATE dummy_decoder.cpp)
|
|
set_target_properties(att_decoder_testing1 PROPERTIES VERSION ${PROJECT_VERSION}
|
|
SOVERSION ${PROJECT_VERSION_MAJOR})
|
|
|
|
add_library(att_decoder_testing2 SHARED)
|
|
add_library(rocprofiler-sdk::att-decoder-testing2 ALIAS att_decoder_testing2)
|
|
target_sources(att_decoder_testing2 PRIVATE dummy_decoder.cpp)
|
|
set_target_properties(
|
|
att_decoder_testing2
|
|
PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib/att
|
|
VERSION ${PROJECT_VERSION}
|
|
SOVERSION ${PROJECT_VERSION_MAJOR})
|
|
|
|
if(NOT ROCPROFILER_MEMCHECK)
|
|
set(IS_MEMCHECK OFF)
|
|
else()
|
|
set(IS_MEMCHECK ON)
|
|
endif()
|
|
|
|
set(env-att-lib "ROCPROF_ATT_LIBRARY_PATH=${PROJECT_BINARY_DIR}/lib")
|
|
gtest_add_tests(
|
|
TARGET att-decoder-test
|
|
SOURCES att_decoder_test.cpp
|
|
TEST_LIST att-decoder-test_TESTS
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
|
set_tests_properties(
|
|
${att-decoder-test_TESTS} PROPERTIES ENVIRONMENT "${env-att-lib}" TIMEOUT 10 LABELS
|
|
"unittests" DISABLED "${IS_MEMCHECK}")
|