HP and AIX cert extension tests failure fix.

This commit is contained in:
alexei.volkov.bugs%sun.com 2006-01-13 07:59:31 +00:00
parent e84cd27fac
commit 909bcd2da3

View File

@ -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"