- dont say all tests were successful when we failed

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1112 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
okir 2003-05-14 19:13:40 +00:00
parent 4be5cbd6c8
commit 059d37757d
1 changed files with 9 additions and 4 deletions

View File

@ -33,6 +33,8 @@ if [ -z "$__p15init__" ]; then
# Redirect output to log file, but keep copies of
# stdout/stderr descriptors on fd 3 and 4
exec 3>&1 4>&2 >$p15log 2>&1
test_failed=false
fi
# Clobber log file
@ -42,11 +44,13 @@ function atexit {
test "$p15temp" && rm -rf $p15temp
msg <<-EOF
:::
::: Test set completed successfully
:::
if ! $test_failed; then
msg <<-EOF
:::
::: Test set completed successfully
:::
EOF
fi
}
function msg {
@ -81,6 +85,7 @@ function fail {
echo "---"
cat $p15log
) >&4
test_failed=true
exit 1
}