runPLTests.sh (781B)
1 #!/bin/sh 2 # 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 # 7 # runPLTests.sh 8 # 9 10 curdir=`pwd` 11 cd ../../common 12 . ./libpkix_init.sh > /dev/null 13 cd ${curdir} 14 15 numtests=0 16 passed=0 17 testunit=SYSTEM 18 19 20 ########## 21 # main 22 ########## 23 24 ParseArgs $* 25 26 RunTests <<EOF 27 pkixutil test_mem 28 pkixutil test_object 29 pkixutil test_string 30 pkixutil test_bigint 31 pkixutil test_bytearray 32 pkixutil test_mutex 33 pkixutil test_mutex2 34 pkixutil test_mutex3 35 pkixutil test_monitorlock 36 pkixutil test_oid 37 pkixutil test_hashtable 38 EOF 39 40 totalErrors=$? 41 html_msg ${totalErrors} 0 " ${testunit}: passed ${passed} of ${numtests} tests" 42 exit ${totalErrors}