Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch for bug 87914 r=wtc, NSS test scripts require . in the PATH
  • Loading branch information
sonja.mirtitsch%sun.com committed Mar 20, 2002
1 parent 8f7bcbe commit 703a3c7
Show file tree
Hide file tree
Showing 11 changed files with 360 additions and 360 deletions.
4 changes: 2 additions & 2 deletions security/nss/tests/all.sh
Expand Up @@ -81,7 +81,7 @@ cd `dirname $0` # will cause problems if sourced
#all.sh should be the first one to try to source the init
if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
cd common
. init.sh
. ./init.sh
fi

if [ -z "O_CRON" -o "$O_CRON" != "ON" ]
Expand All @@ -94,7 +94,7 @@ for i in ${TESTS}
do
SCRIPTNAME=${i}.sh
echo "Running Tests for $i"
(cd ${QADIR}/$i ; . $SCRIPTNAME all file >> ${LOGFILE} 2>&1)
(cd ${QADIR}/$i ; . ./$SCRIPTNAME all file >> ${LOGFILE} 2>&1)
done

SCRIPTNAME=all.sh
Expand Down
2 changes: 1 addition & 1 deletion security/nss/tests/cert/cert.sh
Expand Up @@ -67,7 +67,7 @@ cert_init()
fi
if [ -z "${INIT_SOURCED}" ] ; then
cd ../common
. init.sh
. ./init.sh
fi
SCRIPTNAME="cert.sh"
html_head "Certutil Tests"
Expand Down
2 changes: 1 addition & 1 deletion security/nss/tests/cipher/cipher.sh
Expand Up @@ -58,7 +58,7 @@ cipher_init()
fi
if [ -z "${INIT_SOURCED}" ] ; then
cd ../common
. init.sh
. ./init.sh
fi
SCRIPTNAME="cipher.sh"
html_head "Cipher Tests"
Expand Down
4 changes: 2 additions & 2 deletions security/nss/tests/dbtests/dbtests.sh
Expand Up @@ -68,11 +68,11 @@ dbtest_init()
fi
if [ -z "${INIT_SOURCED}" ] ; then
cd ../common
. init.sh
. ./init.sh
fi
if [ ! -r $CERT_LOG_FILE ]; then # we need certificates here
cd ../cert
. cert.sh
. ./cert.sh
fi

SCRIPTNAME="dbtests.sh"
Expand Down
4 changes: 2 additions & 2 deletions security/nss/tests/fips/fips.sh
Expand Up @@ -60,11 +60,11 @@ fips_init()

if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
cd ../common
. init.sh
. ./init.sh
fi
if [ ! -r $CERT_LOG_FILE ]; then # we need certificates here
cd ../cert
. cert.sh
. ./cert.sh
fi
SCRIPTNAME=fips.sh
html_head "FIPS 140-1 Compliance Tests"
Expand Down
2 changes: 1 addition & 1 deletion security/nss/tests/perf/perf.sh
Expand Up @@ -54,7 +54,7 @@ perf_init()
SCRIPTNAME="perf.sh"
if [ -z "${INIT_SOURCED}" ] ; then
cd ../common
. init.sh
. ./init.sh
fi
SCRIPTNAME="perf.sh"
PERFDIR=${HOSTDIR}/perf
Expand Down
2 changes: 1 addition & 1 deletion security/nss/tests/sdr/sdr.sh
Expand Up @@ -59,7 +59,7 @@ sdr_init()

if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
cd ../common
. init.sh
. ./init.sh
fi
SCRIPTNAME=sdr.sh

Expand Down
4 changes: 2 additions & 2 deletions security/nss/tests/smime/smime.sh
Expand Up @@ -60,11 +60,11 @@ smime_init()

if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
cd ../common
. init.sh
. ./init.sh
fi
if [ ! -r $CERT_LOG_FILE ]; then # we need certificates here
cd ../cert
. cert.sh
. ./cert.sh
fi
SCRIPTNAME=smime.sh
html_head "S/MIME Tests"
Expand Down
4 changes: 2 additions & 2 deletions security/nss/tests/ssl/ssl.sh
Expand Up @@ -60,11 +60,11 @@ ssl_init()

if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
cd ../common
. init.sh
. ./init.sh
fi
if [ ! -r $CERT_LOG_FILE ]; then # we need certificates here
cd ../cert
. cert.sh
. ./cert.sh
fi
SCRIPTNAME=ssl.sh
echo "$SCRIPTNAME: SSL tests ==============================="
Expand Down

0 comments on commit 703a3c7

Please sign in to comment.