import less(1)
[unleashed/tickless.git] / usr / src / test / os-tests / cmd / ostest.ksh
blobd30e7fe6eb52a09316325a6d499e59ac033c4096
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 (c) 2012 by Delphix. All rights reserved.
16 # Copyright 2014, OmniTI Computer Consulting, Inc. All rights reserved.
17 # Copyright 2016, Joyent, Inc.
20 export OS_TESTS="/opt/os-tests"
21 runner="/opt/test-runner/bin/run"
23 function fail
25 echo $1
26 exit ${2:-1}
29 function find_runfile
31 typeset distro=
32 if [[ -f $OS_TESTS/runfiles/default.run ]]; then
33 distro=default
36 [[ -n $distro ]] && echo $OS_TESTS/runfiles/$distro.run
39 while getopts c: c; do
40 case $c in
41 'c')
42 runfile=$OPTARG
43 [[ -f $runfile ]] || fail "Cannot read file: $runfile"
45 esac
46 done
47 shift $((OPTIND - 1))
49 [[ -z $runfile ]] && runfile=$(find_runfile)
50 [[ -z $runfile ]] && fail "Couldn't determine distro"
52 $runner -c $runfile
54 exit $?