From 1502db5a20e902c449e61eacb6d71549c180589d Mon Sep 17 00:00:00 2001 From: "richard.freedman%sun.com" Date: Wed, 29 Mar 2006 21:59:37 +0000 Subject: [PATCH] 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 --- mozilla/security/nss/tests/libpkix/libpkix.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mozilla/security/nss/tests/libpkix/libpkix.sh b/mozilla/security/nss/tests/libpkix/libpkix.sh index 207759eaefa..de026a1b5ff 100755 --- a/mozilla/security/nss/tests/libpkix/libpkix.sh +++ b/mozilla/security/nss/tests/libpkix/libpkix.sh @@ -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"