5869 Need AES CMAC support in KCF+PKCS11
[unleashed.git] / usr / src / test / crypto-tests / cmd / scripts / cryptotest.ksh
blob313cf1e0dc0959ffaf2576cc2c0984c733231ae7
1 #!/usr/bin/ksh
4 # This file and its contents are supplied under the terms of the
5 # Common Development and Distribution License ("CDDL"), version 1.0.
6 # You may only use this file in accordance with the terms of version
7 # 1.0 of the CDDL.
9 # A full copy of the text of the CDDL should have accompanied this
10 # source. A copy of the CDDL is also available via the Internet at
11 # http://www.illumos.org/license/CDDL.
15 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
18 export CRYPTO_TESTS="/opt/crypto-tests"
19 runner="/opt/test-runner/bin/run"
21 function fail
23 echo $1
24 exit ${2:-1}
27 function find_runfile
29 typeset distro=default
31 [[ -n $distro ]] && echo $CRYPTO_TESTS/runfiles/$distro.run
34 while getopts c: c; do
35 case $c in
36 'c')
37 runfile=$OPTARG
38 [[ -f $runfile ]] || fail "Cannot read file: $runfile"
40 esac
41 done
42 shift $((OPTIND - 1))
44 [[ -z $runfile ]] && runfile=$(find_runfile)
45 [[ -z $runfile ]] && fail "Couldn't determine distro"
47 $runner -c $runfile
49 exit $?