- 论坛徽章:
- 780
|
本帖最后由 Herowinter 于 2014-02-13 18:19 编辑
回复 38# 说不过去
试一下这个吧,我对需求的理解是,
failed的数目大于<=后面的那个数字 或
cov比标准小 判定为failed- #!/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-2)};next}
- {if(FNR==1){print"module\tTotal\tPassed\tCov.\tTotal\tPassed\tCov";next}
- if(all_fail[$1]){print $0"\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"cov[$1]"\tfailed"}};print}' $1 $2 > result
- }
- caseResult $1 $2
复制代码 |
|