You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/awk -f
|
|
|
|
$1 == "PASS" {
|
|
pass += $2;
|
|
next
|
|
}
|
|
$1 == "FAIL" {
|
|
fail += $2
|
|
}
|
|
END {
|
|
print "PASS", pass;
|
|
print "FAIL", fail;
|
|
}
|