a2288eb50b
* [rocprofiler-sdk] Install unit tests and helper functions for integration tests * Fix rocprofiler-sdk-tests-target export * Fix handling of cmake policy CMP0174 * Remove -vv from new pytest.ini files * add unit tests and integration tests. * add path to ci workflow. * misc. fixes. * pc sampling tests. * bug fixes. * pc sampling tests fix. * misc. * Update CMakeLists.txt * Update rocprofiler_config_install_tests.cmake, correct license name * fix units tests install issues. * fix counters_def file path. * fix bug, arg shifting. * vendor pytest-cmake. * cmake config fix. missing endfunction() * disable tests, 1.rocprofv3-trace-hip-libs. 2.kernel-tracing. 3.external_correlation 4.rocpd. * disable buffered-tracing test and remove pytest-cmake from requirements.txt. * disable hip-graph-tracing test. * fix building standalone tests to load rocprofiler-sdk cmake package first and then find rocprofiler_sdk_pytest module. * addressed comments: 1.add local bin path to code cov workflow. 2.add to cmake prefix path local bin. 3.use ROCPROFILER_MEMCHECK_PRELOAD_ENV_VALUE 4.misc. fix * enabled back tests api_buffered, external_correlation_id, hip-graph, kernel-tracing, rocpd, tracing-hip-in-libraries. and misc fixes(formating, extra fixtures for agent-index tests.) * cpack to use llvm bin for .hsaco debug symbols. * psdb tests fixes. * EOL. * misc. fixes and Disable api_buffered_tracing, external_correlation_id, hip-graph-tracing, kernel-tracing, rocpd, summary, tracing-hip-libraries, tracing-plus-counter-collection. * fix incorrect cmakelists file. * strip smallkernel.bin * format. * revert disabled tests commit. * misc. fix in counter tests. * misc. * search codeobj unit test assets in curr bin and install bin. * refactor newly added rocpd tests. * modify tests for newly added hip-host-tracing. * add LD LIB path to units, psdb is failing due to libs not being found. --------- Co-authored-by: Venkateshwar Reddy Kandula <venkateshwar.kandula1306@gmail.com> Co-authored-by: Venkateshwar Reddy Kandula <Venkateshwarreddy.Kandula@amd.com> Co-authored-by: JeniferC99 <150404595+JeniferC99@users.noreply.github.com>
83 γραμμές
2.7 KiB
CMake
83 γραμμές
2.7 KiB
CMake
#
|
|
#
|
|
#
|
|
|
|
rocprofiler_deactivate_clang_tidy()
|
|
|
|
add_executable(codeobj-library-tests)
|
|
|
|
set(CODEOBJ_LIB_TEST_SOURCES "codeobj_library_test.cpp")
|
|
|
|
target_sources(codeobj-library-tests PRIVATE ${CODEOBJ_LIB_TEST_SOURCES})
|
|
|
|
set(PKG_TEST_BIN_DIR "${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/tests/unit-tests/bin")
|
|
|
|
target_compile_definitions(
|
|
codeobj-library-tests
|
|
PRIVATE CODEOBJ_BINARY_DIR="${CMAKE_CURRENT_BINARY_DIR}/"
|
|
CODEOBJ_INSTALL_DIR="${CMAKE_INSTALL_PREFIX}/${PKG_TEST_BIN_DIR}/")
|
|
|
|
configure_file(smallkernel.bin smallkernel.bin COPYONLY)
|
|
configure_file(hipcc_output.s hipcc_output.s COPYONLY)
|
|
|
|
install(
|
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/hipcc_output.s
|
|
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/tests/unit-tests/bin
|
|
COMPONENT tests)
|
|
|
|
find_program(
|
|
ROCM_LLVM_STRIP
|
|
NAMES llvm-strip
|
|
HINTS ${ROCM_PATH} ENV ROCM_PATH /opt/rocm
|
|
PATH_SUFFIXES llvm/bin bin)
|
|
|
|
set(_SMALLBIN "${CMAKE_CURRENT_BINARY_DIR}/smallkernel.bin")
|
|
set(_SMALLBIN_STRIPPED "${CMAKE_CURRENT_BINARY_DIR}/smallkernel.bin.stripped")
|
|
|
|
if(ROCM_LLVM_STRIP)
|
|
add_custom_command(
|
|
OUTPUT "${_SMALLBIN_STRIPPED}"
|
|
COMMAND "${ROCM_LLVM_STRIP}" -s "${_SMALLBIN}" -o "${_SMALLBIN_STRIPPED}"
|
|
DEPENDS "${_SMALLBIN}"
|
|
COMMENT
|
|
"Stripping ALL symbols from smallkernel.bin so CPack won't try to create a dbgsym"
|
|
VERBATIM)
|
|
|
|
add_custom_target(strip_smallkernel ALL DEPENDS "${_SMALLBIN_STRIPPED}")
|
|
|
|
install(
|
|
FILES "${_SMALLBIN_STRIPPED}"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/tests/unit-tests/bin"
|
|
RENAME smallkernel.bin
|
|
COMPONENT tests)
|
|
else()
|
|
message(
|
|
WARNING
|
|
"llvm-strip not found; installing unmodified smallkernel.bin (CPack may fail on debuginfo)."
|
|
)
|
|
install(
|
|
FILES "${_SMALLBIN}"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/${PACKAGE_NAME}/tests/unit-tests/bin"
|
|
COMPONENT tests)
|
|
endif()
|
|
|
|
target_link_libraries(
|
|
codeobj-library-tests
|
|
PRIVATE rocprofiler-sdk::rocprofiler-sdk-static-library
|
|
rocprofiler-sdk::rocprofiler-sdk-glog
|
|
rocprofiler-sdk::rocprofiler-sdk-hsa-runtime
|
|
rocprofiler-sdk::rocprofiler-sdk-hip
|
|
rocprofiler-sdk::rocprofiler-sdk-common-library
|
|
GTest::gtest
|
|
GTest::gtest_main
|
|
rocprofiler-sdk::rocprofiler-sdk-amd-comgr
|
|
rocprofiler-sdk::rocprofiler-sdk-dw
|
|
rocprofiler-sdk::rocprofiler-sdk-elf)
|
|
|
|
rocprofiler_add_unit_test(
|
|
TARGET codeobj-library-tests
|
|
SOURCES ${CODEOBJ_LIB_TEST_SOURCES}
|
|
ENVIRONMENT
|
|
"LD_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/lib:${CMAKE_INSTALL_PREFIX}/llvm/lib:/opt/rocm/lib:/opt/rocm/llvm/lib:$ENV{LD_LIBRARY_PATH}"
|
|
)
|