1#!/usr/bin/ksh 2 3# 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. 8# 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. 12# 13 14# 15# Copyright 2015 Nexenta Systems, Inc. All rights reserved. 16# 17 18export CRYPTO_TESTS="/opt/crypto-tests" 19runner="/opt/test-runner/bin/run" 20 21function fail 22{ 23 echo $1 24 exit ${2:-1} 25} 26 27function find_runfile 28{ 29 typeset distro=default 30 31 [[ -n $distro ]] && echo $CRYPTO_TESTS/runfiles/$distro.run 32} 33 34while getopts c: c; do 35 case $c in 36 'c') 37 runfile=$OPTARG 38 [[ -f $runfile ]] || fail "Cannot read file: $runfile" 39 ;; 40 esac 41done 42shift $((OPTIND - 1)) 43 44[[ -z $runfile ]] && runfile=$(find_runfile) 45[[ -z $runfile ]] && fail "Couldn't determine distro" 46 47$runner -c $runfile 48 49exit $? 50