File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,17 +57,17 @@ add_rmdb_cmd_and_check () {
57
57
58
58
if [[ $coverage -eq 1 ]]; then
59
59
echo " status_section=\$ (sed -n '/Test (valid UCDB) status:/,/RegressionCompleted:/p' \$ {regr}.log | head -n -1)
60
- ok_count=\$ (echo \"\$ status_section\" | grep \" Ok\" | sed 's/[^0-9]*//g')
61
- warning_count=\$ (echo \"\$ status_section\" | grep \" Warning\" | sed 's/[^0-9]*//g')
60
+ ok_count=\$ (echo \"\$ status_section\" | grep \" Ok \" | sed 's/[^0-9]*//g')
61
+ warning_count=\$ (echo \"\$ status_section\" | grep \" Warning \" | sed 's/[^0-9]*//g')
62
62
pass_count=\$ ((ok_count + warning_count))" >> $output_file
63
63
else
64
64
echo " status_section=\$ (sed -n '/Action script pass\/fail status:/,/RegressionCompleted:/p' \$ {regr}.log | head -n -1)
65
- tmp_pass_count=\$ (echo \"\$ status_section\" | grep \" Passed\" | sed 's/[^0-9]*//g')
65
+ tmp_pass_count=\$ (echo \"\$ status_section\" | grep \" Passed \" | sed 's/[^0-9]*//g')
66
66
pass_count=\$ ((tmp_pass_count-3)) " >> $output_file
67
67
fi
68
68
69
69
echo "
70
- fail_count=\$ (echo \"\$ status_section\" | grep \" Failed\" | sed 's/[^0-9]*//g')
70
+ fail_count=\$ (echo \"\$ status_section\" | grep \" Failed \" | sed 's/[^0-9]*//g')
71
71
((tot_fail_count+=fail_count))
72
72
((tot_pass_count+=pass_count))
73
73
total=\$ ((fail_count + pass_count))
You can’t perform that action at this time.
0 commit comments