2e5bcec303
git-subtree-dir: projects/rocprofiler git-subtree-mainline:2a52e3974dgit-subtree-split:16ae2e90c6
19 строки
521 B
Bash
Исполняемый файл
19 строки
521 B
Bash
Исполняемый файл
#!/bin/bash -e
|
|
|
|
CURRENT_DIR="$( dirname -- "$0"; )";
|
|
|
|
echo -e "Running Profiler Tests"
|
|
|
|
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
|
|
|
|
echo -e "running feature tests for rocprofiler"
|
|
eval ${CURRENT_DIR}/tests-v2/featuretests/profiler/runFeatureTests
|
|
|
|
echo -e "Running Tracer Tests"
|
|
eval ${CURRENT_DIR}/tests-v2/featuretests/tracer/runTracerFeatureTests
|