mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
nss: update to 3.44.1, with vc2013 fix and gyp fix
This commit is contained in:
parent
a2ef5fcde7
commit
d4b834111b
553 changed files with 1515569 additions and 1130 deletions
24
security/nss/tests/fips/cavs_scripts/runtest.sh
Normal file
24
security/nss/tests/fips/cavs_scripts/runtest.sh
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# 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/.
|
||||
#
|
||||
TESTDIR=${1-.}
|
||||
COMMAND=${2-run}
|
||||
DEFAULT_TESTS="aes aesgcm dsa ecdsa hmac kas tls ike rng rsa sha tdea"
|
||||
shift;
|
||||
shift;
|
||||
TESTS=${@-$DEFAULT_TESTS}
|
||||
result=0
|
||||
for i in $TESTS
|
||||
do
|
||||
echo "********************Running $i tests"
|
||||
sh ./${i}.sh ${TESTDIR} ${COMMAND}
|
||||
last_result=$?
|
||||
if [ $last_result != 0 ]; then
|
||||
echo "CAVS test $i had $last_result failure(s)"
|
||||
fi
|
||||
result=`expr $result + $last_result`
|
||||
done
|
||||
exit $result
|
||||
Loading…
Add table
Add a link
Reference in a new issue