]> git.saurik.com Git - apple/security.git/blame - SecurityTests/cspxutils/ccdvt
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / cspxutils / ccdvt
CommitLineData
d8f41ccd
A
1#! /bin/csh -f
2#
3# run CommonCrypto regression tests.
4#
5set BUILD_DIR=$LOCAL_BUILD_DIR
6#
7set QUIET=
8#
9while ( $#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
19end
20set 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
29echo ===== ccdvt success =====