mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
30d33aa8e8
9934c8faef29, 3c3b381c4865, 5a67f6beee9a, 1b1eb6d77728, a8b668fd72f7, bug962760, bug743700, bug857304, bug972653, bug972450, bug971358, bug903885, bug977073, bug976111, bug949939, bug947653, bug947572, bug903885, bug979106, bug966596, bug979004, bug979752, bug980848, bug938369, bug981170, bug668130, bug974693, bug975056, bug979132, bug370717, bug979070, bug985070, bug900067, bug977673, bug519255, bug989558, bug557299, bug987263, bug369802, a751a5146718, bug992343, bug952572, bug979703, bug994883, bug994869, bug993489, bug984608, bug977869, bug667371, bug672828, bug793347, bug977869
131 lines
3.9 KiB
Bash
131 lines
3.9 KiB
Bash
#!/bin/bash
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
OS=`uname -s`
|
|
ARCH=`uname -p`
|
|
SCRIPT_DIR=`pwd`
|
|
DATE=`date +%Y%m%d`
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 [securitytip|securityjes5]"
|
|
exit 1
|
|
fi
|
|
|
|
BRANCH="$1"
|
|
|
|
if [ "${BRANCH}" != "securitytip" -a "${BRANCH}" != "securityjes5" ]; then
|
|
echo "Usage: $0 [securitytip|securityjes5]"
|
|
exit 1
|
|
fi
|
|
|
|
COV_DIR="/share/builds/mccrel3/security/coverage"
|
|
BRANCH_DIR="${COV_DIR}/${BRANCH}"
|
|
DATE_DIR="${BRANCH_DIR}/${DATE}-${ARCH}"
|
|
CVS_DIR="${DATE_DIR}/cvs_mozilla"
|
|
TCOV_DIR="${DATE_DIR}/tcov_mozilla"
|
|
|
|
CVS_CHECKOUT_BRANCH="cvs_checkout_${BRANCH}"
|
|
|
|
export HOST=`hostname`
|
|
export DOMSUF=red.iplanet.com
|
|
|
|
export NSS_ECC_MORE_THAN_SUITE_B=1
|
|
export IOPR_HOSTADDR_LIST="dochinups.red.iplanet.com"
|
|
export NSS_AIA_PATH="/share/builds/mccrel3/security/aia_certs"
|
|
export NSS_AIA_HTTP="http://cindercone.red.iplanet.com/share/builds/mccrel3/security/aia_certs"
|
|
|
|
export USE_TCOV=1
|
|
export SUN_PROFDATA_DIR="${DATE_DIR}"
|
|
export SUN_PROFDATA="tcov_data"
|
|
|
|
if [ "${OS}" != "SunOS" ]; then
|
|
echo "OS not supported"
|
|
exit 1
|
|
fi
|
|
|
|
case "${ARCH}" in
|
|
"sparc")
|
|
export PATH="/usr/dist/share/sunstudio_sparc,v12.0/SUNWspro/prod/bin:/usr/sfw/bin:/usr/bin:/usr/ccs/bin:/usr/ucb:/tools/ns/bin:/usr/local/bin"
|
|
;;
|
|
"i386")
|
|
export PATH="/usr/dist/share/sunstudio_i386,v12.0/SUNWspro/bin:/usr/sfw/bin:/usr/bin:/usr/ccs/bin:/usr/ucb:/tools/ns/bin:/usr/local/bin"
|
|
;;
|
|
*)
|
|
echo "Platform not supported"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
cvs_checkout_securitytip()
|
|
{
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/nsprpub
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/dbm
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/security/dbm
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/security/coreconf
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/security/nss
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A mozilla/security/jss
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_1_RTM mozilla/security/nss/lib/freebl/ecl/ecl-curve.h
|
|
}
|
|
|
|
cvs_checkout_securityjes5()
|
|
{
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSPR_4_6_BRANCH mozilla/nsprpub
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_BRANCH mozilla/dbm
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_BRANCH mozilla/security/dbm
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_BRANCH mozilla/security/coreconf
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_BRANCH mozilla/security/nss
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r JSS_4_2_BRANCH mozilla/security/jss
|
|
cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co -A -r NSS_3_11_1_RTM mozilla/security/nss/lib/freebl/ecl/ecl-curve.h
|
|
}
|
|
|
|
cvs_checkout()
|
|
{
|
|
rm -rf "${DATE_DIR}"
|
|
mkdir -p "${CVS_DIR}"
|
|
cd "${CVS_DIR}"
|
|
|
|
${CVS_CHECKOUT_BRANCH}
|
|
}
|
|
|
|
run_build()
|
|
{
|
|
cd "${CVS_DIR}/mozilla/security/nss"
|
|
gmake nss_build_all
|
|
}
|
|
|
|
run_tests()
|
|
{
|
|
cd "${CVS_DIR}/mozilla/security/nss/tests"
|
|
./all.sh
|
|
}
|
|
|
|
process_results()
|
|
{
|
|
rm -rf "${TCOV_DIR}"
|
|
mkdir -p "${TCOV_DIR}"
|
|
|
|
cat "${SUN_PROFDATA_DIR}/${SUN_PROFDATA}/tcovd" | grep SRCFILE | grep "${CVS_DIR}/.*.c$" | sed "s:[^/]*\(.*\):\1:" | sort -u |
|
|
while read line
|
|
do
|
|
DIR=`echo "${line}" | sed "s:${CVS_DIR}/\(.*\)/.*:\1:"`
|
|
FILE=`echo "${line}" | sed "s:.*/\(.*\):\1:"`
|
|
|
|
mkdir -p "${TCOV_DIR}/${DIR}"
|
|
tcov -o "${TCOV_DIR}/${DIR}/$FILE" -x "${SUN_PROFDATA}" $line >/dev/null 2>&1
|
|
done
|
|
}
|
|
|
|
cvs_checkout
|
|
run_build
|
|
run_tests
|
|
process_results
|
|
|
|
cd "${SCRIPT_DIR}"
|
|
./report.sh "${BRANCH}" "${DATE}" "${ARCH}"
|
|
|
|
exit 0
|
|
|