]> git.saurik.com Git - apple/security.git/blob - SecurityTests/cspxutils/ccdvt
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / cspxutils / ccdvt
1 #! /bin/csh -f
2 #
3 # run CommonCrypto regression tests.
4 #
5 set BUILD_DIR=$LOCAL_BUILD_DIR
6 #
7 set QUIET=
8 #
9 while ( $#argv > 0 )
10 switch ( "$argv[1]" )
11 case q:
12 set QUIET = q
13 shift
14 breaksw
15 default:
16 cat cspdvt_usage
17 exit(1)
18 endsw
19 end
20 set CSPXUTILS=`pwd`
21 #TODO $BUILD_DIR/ccSymCompat $QUIET || exit(1)
22 #TODO $BUILD_DIR/ccSymCompat o $QUIET || exit(1)
23 $BUILD_DIR/ccSymTest $QUIET || exit(1)
24 $BUILD_DIR/ccHmacCompat $QUIET || exit(1)
25 $BUILD_DIR/ccHmacClone $QUIET || exit(1)
26 $BUILD_DIR/ccOneShot $QUIET || exit(1)
27 $BUILD_DIR/ccOpensslCompat $QUIET || exit(1)
28
29 echo ===== ccdvt success =====