-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
script="./cs.status" | ||
if [[ ! -e "${script}" ]]; then | ||
command="ls ./cs.status.[0-9]*" | ||
printed=0 | ||
while ! ${command} 1>/dev/null 2>&1; do | ||
if compgen -G "STDERR*" > /dev/null; then | ||
if [[ $(stat -c %s STDERR* | sort | tail -n 1) -gt 0 ]]; then | ||
echo "STDERR file(s) found; stopping." >&2 | ||
exit 1 | ||
fi | ||
elif [[ ${printed} -eq 0 ]]; then | ||
echo "Waiting for ./cs.status.[0-9]* file(s) to appear..." >&2 | ||
printed=1 | ||
fi | ||
sleep 1 | ||
done | ||
script="$(${command})" | ||
fi | ||
|
||
echo ${script} | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
test_summary_dir="$(dirname "$0")" | ||
script="$("${test_summary_dir}"/_get_cs.status.sh)" | ||
|
||
tmpfile=.test_summary.$(date "+%Y%m%d%H%M%S%N") | ||
${script} > ${tmpfile} | ||
|
||
# We don't want the script to exit if grep finds no matches | ||
set +e | ||
|
||
# Account for completed tests | ||
grep -E "FAIL.*BASELINE exception" ${tmpfile} | awk '{print $2}' > accounted_for_baselineException | ||
grep -E "FAIL.*CREATE_NEWCASE" ${tmpfile} | grep -v "EXPECTED" | awk '{print $2}' > accounted_for_createCase | ||
grep -E "FAIL.*SHAREDLIB_BUILD" ${tmpfile} | grep -v "EXPECTED" | awk '{print $2}' > accounted_for_sharedlibBuild | ||
grep -E "FAIL.*MODEL_BUILD" ${tmpfile} | grep -v "EXPECTED" | awk '{print $2}' > accounted_for_modelBuild | ||
grep -E "FAIL.*RUN" ${tmpfile} | grep -v "EXPECTED" | awk '{print $2}' > accounted_for_runFail | ||
grep -E "PASS.*BASELINE" ${tmpfile} | awk '{print $2}' > accounted_for_pass | ||
grep -E "FAIL.*COMPARE_base_rest" ${tmpfile} | grep -v "EXPECTED" | awk '{print $2}' > accounted_for_compareBaseRest | ||
grep -E "FAIL.*BASELINE.*otherwise" ${tmpfile} | awk '{print $2}' > accounted_for_fieldlist | ||
grep -E "FAIL.*BASELINE.*some baseline files were missing" ${tmpfile} | awk '{print $2}' > accounted_for_missingBaselineFiles | ||
grep -E "FAIL.*BASELINE.*baseline directory.*does not exist" ${tmpfile} | awk '{print $2}' > accounted_for_missingBaselineDir | ||
grep -E "EXPECTED FAILURE" ${tmpfile} | awk '{print $2}' > accounted_for_expectedFail | ||
grep -E "FAIL.*XML*" ${tmpfile} | awk '{print $2}' > accounted_for_xmlFail | ||
|
||
# Runs that fail because of restart diffs (can?) also show up as true baseline diffs. Only keep them as the former. | ||
[[ -e accounted_for_truediffs ]] && rm accounted_for_truediffs | ||
for e in $(grep -E "FAIL.*BASELINE.*DIFF" ${tmpfile} | awk '{print $2}'); do | ||
if [[ $(grep ${e} accounted_for_compareBaseRest | wc -l) -eq 0 ]]; then | ||
echo ${e} >> accounted_for_truediffs | ||
fi | ||
done | ||
|
||
# Account for pending tests | ||
[[ -e accounted_for_pend ]] && rm accounted_for_pend | ||
touch accounted_for_pend | ||
for t in $(grep -E "Overall: PEND" ${tmpfile} | awk '{print $1}' | sort); do | ||
if [[ $(grep $t accounted_for_expectedFail | wc -l) -eq 0 ]]; then | ||
echo $t >> accounted_for_pend | ||
fi | ||
done | ||
|
||
# We're done with grep so let's re-enable this | ||
set -e | ||
|
||
for d in $(grep "Overall" ${tmpfile} | awk '{print $1}'); do [[ $(grep $d accounted_for* | wc -l) -eq 0 ]] && ${script} | grep $d; done > not_accounted_for | ||
|
||
for f in accounted*; do [[ $f == accounted_for_pend ]] && continue; echo $f; cat $f; echo " "; done | ||
|
||
# Print these last | ||
echo accounted_for_pend | ||
cat accounted_for_pend | ||
echo " " | ||
echo not_accounted_for | ||
cat not_accounted_for | ||
echo " " | ||
|
||
rm ${tmpfile} | ||
exit 0 |