Enable tests validation in the CI environment

Change-Id: Ied3d203db35083f0045fae052d82ec5e1a867581


[ROCm/roctracer commit: fd1469a573]
This commit is contained in:
Laurent Morichetti
2022-05-20 17:02:25 -07:00
rodzic 9ce94f467e
commit 67fb1f56b3
+6 -15
Wyświetl plik
@@ -27,11 +27,6 @@ BIN_NAME=`basename $0`
BIN_DIR=`dirname $0`
cd $BIN_DIR
IS_CI=0
if [ "$BIN_NAME" = "run_ci.sh" ] ; then
IS_CI=1
fi
# enable tools load failure reporting
export HSA_TOOLS_REPORT_LOAD_FAILURE=1
# paths to ROC profiler and other libraries
@@ -91,16 +86,12 @@ eval_test() {
echo "--- stderr ---"
cat test/out/$test_name.err
fi
if [ $IS_CI = 1 ] ; then
is_failed=0;
else
if [ $is_failed = 0 ] ; then
python3 ./test/check_trace.py -in $test_name -ck $check_trace_flag
is_failed=$?
if [ $is_failed != 0 ] ; then
echo "Trace checker error:"
python3 ./test/check_trace.py -v -in $test_name -ck $check_trace_flag
fi
if [ $is_failed = 0 ] ; then
python3 ./test/check_trace.py -in $test_name -ck $check_trace_flag
is_failed=$?
if [ $is_failed != 0 ] ; then
echo "Trace checker error:"
python3 ./test/check_trace.py -v -in $test_name -ck $check_trace_flag
fi
fi
if [ $is_failed = 0 ] ; then