[CI] Disable other unstable tests (#490)

* Disable other unstable tests

* Disable validating test_total_runtime in kernel-tracing

* The disabled tests will be stabilized and re-enabled by ROCm 7.0.1 or ROCm 7.1
This commit is contained in:
Madsen, Jonathan
2025-06-30 15:42:38 -05:00
committed by GitHub
parent 640ca55ac0
commit 69f71b8097
2 changed files with 19 additions and 4 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ project(
find_package(rocprofiler-sdk REQUIRED)
set(PYTEST_ARGS)
if(ROCPROFILER_MEMCHECK MATCHES "(Address|Thread)Sanitizer" OR ROCPROFILER_BUILD_CODECOV)
if(ROCPROFILER_MEMCHECK MATCHES "(Address|Thread|UndefinedBehavior)Sanitizer"
OR ROCPROFILER_BUILD_CODECOV
OR ROCPROFILER_DISABLE_UNSTABLE_CTESTS)
set(PYTEST_ARGS -k "not test_total_runtime")
endif()