Merge "calling python3 explictely" into amd-staging

This commit is contained in:
Evgeny Shcherbakov
2020-12-16 16:01:57 -05:00
committed by Gerrit Code Review
6 changed files with 13 additions and 19 deletions
+2 -2
View File
@@ -86,11 +86,11 @@ eval_test() {
is_failed=0;
else
if [ $is_failed = 0 ] ; then
python ./test/check_trace.py -in $test_name -ck $check_trace_flag
python3 ./test/check_trace.py -in $test_name -ck $check_trace_flag
is_failed=$?
if [ $is_failed != 0 ] ; then
echo "Trace checker error:"
python ./test/check_trace.py -v -in $test_name -ck $check_trace_flag
python3 ./test/check_trace.py -v -in $test_name -ck $check_trace_flag
fi
fi
fi