flush-rate option fixed

Change-Id: I74ff83ebf2a0a4ba414d30b7cb193522f44660ce
This commit is contained in:
Evgeny
2020-08-15 02:23:43 -05:00
parent ddcb68d0a8
commit 156d9327cc
5 changed files with 118 additions and 98 deletions
+4 -1
View File
@@ -79,7 +79,9 @@ eval_test() {
test_runnum=$((test_runnum + 1))
eval "$cmdline" >$test_trace 2>&1
is_failed=$?
cat $test_trace
if [ $is_failed != 0 ] ; then
cat $test_trace
fi
if [ $IS_CI = 1 ] ; then
is_failed=0;
else
@@ -87,6 +89,7 @@ eval_test() {
python ./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
fi
fi