19e3253049
Change-Id: I741e29b8fbce9d4643c4f13afafd7d4fd648094b
14 lines
400 B
Bash
Executable File
14 lines
400 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURRENT_DIR="$( dirname -- "$0"; )";
|
|
|
|
echo -e "Running Profiler Tests"
|
|
|
|
echo -e "running unit tests for rocprofiler"
|
|
eval ${CURRENT_DIR}/tests-v2/unittests/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 |