summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsonmi%netscape.com <devnull@localhost>2001-07-09 17:56:12 +0000
committersonmi%netscape.com <devnull@localhost>2001-07-09 17:56:12 +0000
commitf4ea898bc8b1f0e6472efdd3484c4431fecdbc65 (patch)
treeb5cbd15f6ab60145e29f3611b435e8ebb82090ba
parent700a6047fd0b735259f143fda0f163b3ae1f683f (diff)
downloadnss-hg-f4ea898bc8b1f0e6472efdd3484c4431fecdbc65.tar.gz
removed the check for lock files on the tinderbox QA
-rwxr-xr-xsecurity/nss/tests/nssqa6
1 files changed, 5 insertions, 1 deletions
diff --git a/security/nss/tests/nssqa b/security/nss/tests/nssqa
index 9e744b5e2..8fbded195 100755
--- a/security/nss/tests/nssqa
+++ b/security/nss/tests/nssqa
@@ -35,8 +35,12 @@ TBX_EXIT=50 # in case we are running on a tinderbox build, any
# early exit needs to return an error
. `dirname $0`/header # utilities, shellfunctions etc, global to NSS QA
-is_running ${TMP}/nssqa # checks if the file exists, if yes Exits, if not
+if [ -z "$O_TBX" -o "$O_TBX" != "ON" ] ; then
+ is_running ${TMP}/nssqa
+ # checks if the file exists, if yes Exits, if not
# creates to implement a primitive locking mechanism
+fi
+
KILL_SELFSERV=ON # cleanup will also kill the leftover selfserv processes
################################ check_distdir #########################