Files
rocm-systems/tests-v2/run_tests.sh
T

14 lines
400 B
Bash
Raw Normal View History

2023-02-03 12:31:39 -06:00
#!/bin/bash
CURRENT_DIR="$( dirname -- "$0"; )";
echo -e "Running Profiler Tests"
2023-03-16 21:32:18 +05:30
echo -e "running unit tests for rocprofiler"
eval ${CURRENT_DIR}/tests-v2/unittests/runUnitTests
2023-02-03 12:31:39 -06:00
2023-03-16 21:32:18 +05:30
echo -e "running feature tests for rocprofiler"
eval ${CURRENT_DIR}/tests-v2/featuretests/profiler/runFeatureTests
2023-02-03 12:31:39 -06:00
echo -e "Running Tracer Tests"
eval ${CURRENT_DIR}/tests-v2/featuretests/tracer/runTracerFeatureTests