summaryrefslogtreecommitdiffstats
path: root/security/nss/tests/libpkix/pkix_pl_tests/system/runPLTests.sh
blob: ec166cd084a2fda1b4b20ce300daae6b0a1ae19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/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/.
#
# runPLTests.sh
#

curdir=`pwd`
cd ../../common
. ./libpkix_init.sh > /dev/null
cd ${curdir}

numtests=0
passed=0
testunit=SYSTEM


##########
# main
##########

ParseArgs $*

RunTests <<EOF
pkixutil test_mem
pkixutil test_object
pkixutil test_string
pkixutil test_bigint
pkixutil test_bytearray
pkixutil test_mutex
pkixutil test_mutex2
pkixutil test_mutex3
pkixutil test_monitorlock
pkixutil test_oid
pkixutil test_hashtable
EOF

totalErrors=$?
html_msg ${totalErrors} 0 "&nbsp;&nbsp;&nbsp;${testunit}: passed ${passed} of ${numtests} tests"
exit ${totalErrors}