Use an extra line to echo a blank line; echo does not interpret backslash-n

properly on all platforms.


git-svn-id: svn://10.0.0.236/branches/NSS_LIBPKIX_BRANCH@193213 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
richard.freedman%sun.com
2006-03-29 21:59:37 +00:00
parent f888317086
commit 1502db5a20

View File

@@ -152,7 +152,8 @@ html_msg $? 0 "Results of performance tests in sample_apps"
totalErrors=`expr ${pkixErrors} + ${pkixplErrors} + ${pkixPerfErrors}`
if [ ${totalErrors} -eq 0 ]; then
echo "\n************************************************************"
echo ""
echo "************************************************************"
echo "END OF ALL TESTS: ALL TESTS COMPLETED SUCCESSFULLY"
echo "************************************************************"
html_msg ${totalErrors} 0 "ALL LIBPKIX TESTS COMPLETED SUCCESSFULLY"
@@ -167,7 +168,8 @@ else
fi
if [ ${totalErrors} -ne 0 ]; then
echo "\n************************************************************"
echo ""
echo "************************************************************"
echo "END OF ALL TESTS: ${totalErrors} TEST${plural} FAILED"
echo "************************************************************"
html_msg 1 0 "${totalErrors} LIBPKIX TEST${plural} FAILED"