Update run.sh

This commit is contained in:
rkebichi
2020-03-23 17:14:03 -04:00
committed by GitHub
parent e100e6d87d
commit d8eeea6b8b
+8 -2
View File
@@ -59,8 +59,14 @@ eval_test() {
echo "$label: FAILED"
test_status=$(($test_status + 1))
else
echo "Comparing traces: ../script/check_trace.sh $3"
eval "../script/check_trace.sh $3 $label"
echo "Comparing traces: ../script/check_trace.py -in $3"
eval "../script/check_trace.py -in $3"
if [ $? != 0 ] ; then
echo "$label: FAILED trace comparison"
test_status=$(($test_status + 1))
else
echo "$label: PASSED trace comparison"
fi
fi
fi
test_number=$((test_number + 1))