e6d24cc9fb
Change-Id: Ia32c9b2a1b5f833d1c7b078b678895b736d1e2a1
[ROCm/rocprofiler commit: 13c12bc7e7]
14 lines
391 B
Bash
Executable File
14 lines
391 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/unittests/runUnitTests
|
|
|
|
echo -e "running feature tests for rocprofiler"
|
|
eval ${CURRENT_DIR}/tests/featuretests/profiler/runFeatureTests
|
|
|
|
echo -e "Running Tracer Tests"
|
|
eval ${CURRENT_DIR}/tests/featuretests/tracer/runTracerFeatureTests |