summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrelyea%netscape.com <devnull@localhost>2000-05-31 22:34:07 +0000
committerrelyea%netscape.com <devnull@localhost>2000-05-31 22:34:07 +0000
commit2d95d193a5e5814837e54d43106b8dafeda8531e (patch)
tree12a86da210b6a3a7d82f0a5629037a3440f279cc
parent320b3b599622ef364d037c6cadbe420033d70a7c (diff)
downloadnss-hg-2d95d193a5e5814837e54d43106b8dafeda8531e.tar.gz
Fix Environment variable overrides.
-rw-r--r--security/nss/tests/common/init.sh13
1 files changed, 7 insertions, 6 deletions
diff --git a/security/nss/tests/common/init.sh b/security/nss/tests/common/init.sh
index fe5c5020e..bf6f3039b 100644
--- a/security/nss/tests/common/init.sh
+++ b/security/nss/tests/common/init.sh
@@ -5,10 +5,10 @@
#
mozilla_root=`(cd ../../../..; pwd)`
common=`(cd ../common; pwd)`
-MOZILLA_ROOT=${SECURITY_ROOT-$mozilla_root}
+MOZILLA_ROOT=${MOZILLA_ROOT-$mozilla_root}
COMMON=${TEST_COMMON-$common}
DIST=${DIST-${MOZILLA_ROOT}/dist}
-SECURITY_ROOT=${DIST-${MOZILLA_ROOT}/security/nss}
+SECURITY_ROOT=${SECURITY_ROOT-${MOZILLA_ROOT}/security/nss}
TESTDIR=${TESTDIR-${MOZILLA_ROOT}/tests_results/security}
. ../common/arch.sh
OBJDIR=${OBJDIR_NAME}
@@ -42,12 +42,13 @@ if [ ! -f "${RESULTS}" ]; then
echo "<H4>Platform: ${OBJDIR}<BR>" >> ${RESULTS}
echo "Test Run: ${HOST}.$version</H4>" >> ${RESULTS}
echo "<HR><BR>" >> ${RESULTS}
+
+ echo "********************************************"
+ echo " Platform: ${OBJDIR}"
+ echo " Results: ${HOST}.$version"
+ echo "********************************************"
fi
-echo "********************************************"
-echo " Platform: ${OBJDIR}"
-echo " Results: ${HOST}.$version"
-echo "********************************************"
KILL="kill"
if [ ${OS_ARCH} = "Linux" ]; then