summaryrefslogtreecommitdiff
path: root/tests/all.sh
diff options
context:
space:
mode:
authorFranziskus Kiefer <franziskuskiefer@gmail.com>2016-10-12 12:09:29 +0200
committerFranziskus Kiefer <franziskuskiefer@gmail.com>2016-10-12 12:09:29 +0200
commit15a61249884134e275c4396870d4c290e8b873b8 (patch)
tree156f7f8ffa945a89467bc8a81e6d81a23817f66a /tests/all.sh
parentf7964b0b3ebc488626bd43d6bfacb6a0cfbf4966 (diff)
downloadnss-hg-15a61249884134e275c4396870d4c290e8b873b8.tar.gz
Bug 1294417 - add gyp builds to linux64-debug TC, r=ttaubert
Diffstat (limited to 'tests/all.sh')
-rwxr-xr-xtests/all.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/all.sh b/tests/all.sh
index 89922cf24..1b811f6f0 100755
--- a/tests/all.sh
+++ b/tests/all.sh
@@ -295,32 +295,6 @@ if [ -z "${INIT_SOURCED}" -o "${INIT_SOURCED}" != "TRUE" ]; then
fi
# NOTE:
-# Since in make at the top level, modutil is the last file
-# created, we check for modutil to know whether the build
-# is complete. If a new file is created after that, the
-# following test for modutil should check for that instead.
-# Exception: when building softoken only, shlibsign is the
-# last file created.
-if [ "${NSS_BUILD_SOFTOKEN_ONLY}" = "1" ]; then
- LAST_FILE_BUILT=shlibsign
-else
- LAST_FILE_BUILT=modutil
-fi
-
-if [ ! -f ${DIST}/${OBJDIR}/bin/${LAST_FILE_BUILT}${PROG_SUFFIX} ]; then
- if [ "${NSS_BUILD_UTIL_ONLY}" = "1" ]; then
- # Currently no tests are run or built when building util only.
- # This may change in the future, atob and bota are
- # possible candidates.
- echo "No tests were built"
- else
- echo "Build Incomplete. Aborting test." >> ${LOGFILE}
- html_head "Testing Initialization"
- Exit "Checking for build"
- fi
-fi
-
-# NOTE:
# Lists of enabled tests and other settings are stored to ${ENV_BACKUP}
# file and are are restored after every test cycle.