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 2019 Joyent, Inc. 16# 17 18export NET_TESTS="/opt/net-tests" 19runner="/opt/test-runner/bin/run" 20 21function fail 22{ 23 echo $1 >&2 24 exit ${2:-1} 25} 26 27function find_runfile 28{ 29 typeset distro= 30 if [[ -f $NET_TESTS/runfiles/default.run ]]; then 31 distro=default 32 fi 33 34 [[ -n $distro ]] && echo $NET_TESTS/runfiles/$distro.run 35} 36 37while getopts c: c; do 38 case $c in 39 'c') 40 runfile=$OPTARG 41 [[ -f $runfile ]] || fail "Cannot read file: $runfile" 42 ;; 43 esac 44done 45shift $((OPTIND - 1)) 46 47[[ -z $runfile ]] && runfile=$(find_runfile) 48[[ -z $runfile ]] && fail "Couldn't determine distro" 49 50$runner -c $runfile 51 52exit $? 53