]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/certTime/runTime
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / clxutils / certTime / runTime
1 #! /bin/csh -f
2 #
3 # run certTime thru all six options
4 #
5 set LOOPS = 1000
6 if( $#argv == 1 ) then
7 set LOOPS = "$argv[1]"
8 endif
9 #
10 # safely look for this required env var
11 #
12 setenv | grep LOCAL_BUILD_DIR > /dev/null
13 if($status != 0) then
14 echo Please set env var LOCAL_BUILD_DIR.
15 exit(1)
16 endif
17 #
18 $LOCAL_BUILD_DIR/certTime p $LOOPS
19 $LOCAL_BUILD_DIR/certTime g $LOOPS
20 $LOCAL_BUILD_DIR/certTime t $LOOPS
21 $LOCAL_BUILD_DIR/certTime c $LOOPS
22 $LOCAL_BUILD_DIR/certTime s $LOOPS
23 $LOCAL_BUILD_DIR/certTime v $LOOPS