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"
|
2023-04-12 11:26:18 -05:00
|
|
|
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"
|
2023-06-06 21:41:47 +00:00
|
|
|
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
|