mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Return the number of failed tests from make_tests
This commit is contained in:
parent
fb75eee385
commit
28f6ffbc42
@ -19,15 +19,11 @@ make_tests() {
|
|||||||
/bin/sh $plik 3>&1 2>> "results.log" 1>&2
|
/bin/sh $plik 3>&1 2>> "results.log" 1>&2
|
||||||
done
|
done
|
||||||
count=$(grep -c "Test succeeded" "results.log")
|
count=$(grep -c "Test succeeded" "results.log")
|
||||||
if test $count -ne 0
|
|
||||||
then
|
|
||||||
skip=$(grep -c "Test skipped" "results.log")
|
skip=$(grep -c "Test skipped" "results.log")
|
||||||
fail=$(grep -c "Test failed" "results.log")
|
fail=$(grep -c "Test failed" "results.log")
|
||||||
printf "%s\n" "testall.sh finished"
|
printf "%s\n" "testall.sh finished"
|
||||||
printf "%s\n" "summary: success $count, skip $skip, fail $fail"
|
printf "%s\n" "summary: success $count, skip $skip, fail $fail"
|
||||||
else # no test was done
|
return $fail
|
||||||
result=1
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
rm -rf "${result_path}"
|
rm -rf "${result_path}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user