Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
521 B
Bash
Raw Permalink Normal View History

2023-08-21 15:08:31 +00:00
#!/bin/bash -e
2023-02-03 12:31:39 -06:00
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/core/runCoreUnitTests
echo -e "running unit tests for rocprofiler"
eval ${CURRENT_DIR}/tests-v2/unittests/profiler/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"
2023-08-21 15:08:31 +00:00
eval ${CURRENT_DIR}/tests-v2/featuretests/tracer/runTracerFeatureTests