[CI] Disable other unstable tests (#491)

Disable other unstable tests

- validation test_validate_counter_collection_pmc1 for conversion script
- increase timeout for tests/rocprofv3/pc-sampling execution phase
Tento commit je obsažen v:
Madsen, Jonathan
2025-06-30 15:53:30 -05:00
odevzdal GitHub
rodič 69f71b8097
revize f0fe04b95e
5 změnil soubory, kde provedl 19 přidání a 14 odebrání
+7 -2
Zobrazit soubor
@@ -29,6 +29,11 @@ project(
VERSION 0.0.0)
find_package(rocprofiler-sdk REQUIRED)
if(ROCPROFILER_DISABLE_UNSTABLE_CTESTS)
set(PYTEST_ARGS -k "not test_validate_counter_collection_pmc1")
endif()
# copy to binary directory
rocprofiler_configure_pytest_files(COPY validate.py input.txt conftest.py
CONFIG pytest.ini)
@@ -83,7 +88,7 @@ foreach(i RANGE 0 ${convert_test_length})
add_test(NAME ${validate_test_name}
COMMAND ${Python3_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/validate.py
--input ${output} --retain-agent-prefix true)
${PYTEST_ARGS} --input ${output} --retain-agent-prefix true)
else()
add_test(
NAME ${test_name}
@@ -95,7 +100,7 @@ foreach(i RANGE 0 ${convert_test_length})
add_test(NAME ${validate_test_name}
COMMAND ${Python3_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/validate.py
--input ${output} --retain-agent-prefix false)
${PYTEST_ARGS} --input ${output} --retain-agent-prefix false)
endif()
set_tests_properties(
${test_name}