- 论坛徽章:
- 780
|
本帖最后由 Herowinter 于 2014-02-14 11:11 编辑
最终的脚本这样的,楼主再试一下吧。- #!/bin/bash
- function caseResult(){
- awk '
- NR==FNR{if($0~/.*\|.*TEST RESULT/){file=gensub(".*/([A-Za-z0-9_]+):TEST RESULT.*","\\1",1);file=substr(file,2)}
- else if($0~/.*\|.*passed/){total[file]=$2;}else if($0~/.*\|.*Run/){total[file]=$3;failed[file]=$6}
- else if($0~/.*\|.*ALL CASES FIALED/){all_fail[file]=1}else if($0~/.*\|.*Coverage/){cov[file]=$(NF-1)};next}
- {if(FNR==1){print $0"\tTotal\tPassed\tCov";next}
- if(all_fail[$1]){print $0"\t\t\t\tfailed";next}
- if($1 in total){s1=+$NF;if($1 in failed){s2=gensub(/.*<=([0-9]+).*/,"\\1",1);if((failed[$1]>s2)||(cov[$1]<s1))$0=$0"\t"total[$1]"\t"failed[$1]"\t"cov[$1]"\tfailed"}
- else if(cov[$1]<s1){$0=$0"\t"total[$1]"\t\t"cov[$1]"\tfailed"}}print}' $1 $2 > result
- }
- caseResult $1 $2
复制代码 结果- rrh2t_ng2 Total Passed Cov. Total Passed Cov
- acl 8 96.00% 3 57.45% failed
- ampcontrol 30 <=1 83.00% 3 2 2.73106% failed
- antennatests 8 78.00% failed
- cfr/tcfr 5 91.00%
- cpmgr 16 <=4 72.00%
- digitalsensors 9 51.00% 9 21.8677% failed
- eeprom 8 68.00%
- fcpc 13 75.00% 13 73.7325% failed
- gfh 14 <=2 90.00%
- hfm 9 74.00% 9 54.8601% failed
- pathdelay 6 83.00% 6 73.37% failed
- psuisr 16 <=2 91.00%
- rpgc 14 87.00% 14 82.645% failed
- txattn 16 83.00% 16 75.441% failed
- tempsense 15 86.00%
- tcs 1 100.00%
- cpri 26 <=3 76.00%
- delaymgr 9 91.00% 9 90.8476% failed
- edpd 10 90.00%
- eh 24 <=2 77.00%
- fcpcs 10 84.00% 9 1 81.1428% failed
- fpgc 26 <=3 74.00%
- led 15 86.00%
- ralaisg 17 <=1 68.00% 17 1 66.7043% failed
- reportmgr 22 79.00%
- ttlna 5 72.00% 5 2 39.8396% failed
- txcntl 32 81.00% 32 76.824% failed
- vswr 4 <=1 84.00%
- iqec 1 100.00%
- cam 53 <=5 69.00%
- fastrtwp 5 <=1 83.00%
- divmon 8 50.00%
- rfhead 5 95.00%
- scheduler 9 73.00%
复制代码 |
|