Files
rocm-systems/tests/run_tests.sh
T

14 lines
391 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"
2023-03-14 18:22:18 +05:30
eval ${CURRENT_DIR}/tests/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"
2023-02-03 12:31:39 -06:00
eval ${CURRENT_DIR}/tests/featuretests/profiler/runFeatureTests
echo -e "Running Tracer Tests"
eval ${CURRENT_DIR}/tests/featuretests/tracer/runTracerFeatureTests