From af798d22c084dbdf4223578597ffbc0a132a6b8f Mon Sep 17 00:00:00 2001 From: "alexei.volkov.bugs%sun.com" Date: Fri, 13 Jan 2006 07:59:31 +0000 Subject: [PATCH] HP and AIX cert extension tests failure fix. --- security/nss/tests/cert/cert.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/security/nss/tests/cert/cert.sh b/security/nss/tests/cert/cert.sh index a9acc02736f..859025ac846 100755 --- a/security/nss/tests/cert/cert.sh +++ b/security/nss/tests/cert/cert.sh @@ -687,14 +687,14 @@ cert_extensions() count=0 while read arg opt filterList; do - if [ "`echo $arg | cut -c 1`" = "#" ]; then + if [ X"`echo $arg | cut -c 1`" = "X#" ]; then continue fi - if [ "`echo $arg | cut -c 1`" = "!" ]; then + if [ X"`echo $arg | cut -c 1`" = "X!" ]; then testName="$filterList" continue fi - if [ "$arg" = "=" ]; then + if [ X"$arg" = "X=" ]; then count=`expr $count + 1` echo "#################################################" CU_ACTION="Testing $testName"