restore test_analyze_workloads to a single ctest

Signed-off-by: Karl W Schulz <karl.schulz@amd.com>


[ROCm/rocprofiler-compute commit: e6a00789b4]
This commit is contained in:
Karl W Schulz
2024-03-15 13:43:28 -05:00
committed by Karl W. Schulz
parent 67236bb0b8
commit e370a18a6d
+6 -13
View File
@@ -243,28 +243,21 @@ set_tests_properties(
test_profile_misc
PROPERTIES LABELS "profile" RESOURCE_GROUPS gpus:1)
# original add_test( NAME test_profiler_general COMMAND pytest ${COV_OPTION}
# ${PROJECT_SOURCE_DIR}/tests/test_profile_general.py WORKING_DIRECTORY
# ${PROJECT_SOURCE_DIR})
# ---------------------------
# analysis command tests
# ---------------------------
add_test(
NAME test_analyze_commands
COMMAND
pytest -n ${PYTEST_NUMPROCS} -m "not serial"
--junitxml=tests/test_analyze_commands.xml ${COV_OPTION}
${PROJECT_SOURCE_DIR}/tests/test_analyze_commands.py
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
add_test(
NAME test_analyze_commands_serial
COMMAND pytest -m "serial" --junitxml=tests/test_analyze_commands_serial.xml
COMMAND pytest -n ${PYTEST_NUMPROCS} --junitxml=tests/test_analyze_commands.xml
${COV_OPTION} ${PROJECT_SOURCE_DIR}/tests/test_analyze_commands.py
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
# add_test( NAME test_analyze_commands_serial COMMAND pytest -m "serial"
# --junitxml=tests/test_analyze_commands_serial.xml ${COV_OPTION}
# ${PROJECT_SOURCE_DIR}/tests/test_analyze_commands.py WORKING_DIRECTORY
# ${PROJECT_SOURCE_DIR})
# ---------------------------
# analyze workloads tests
# ---------------------------