xref: /illumos-gate/usr/src/test/header-tests/cmd/headertest.ksh (revision ac45d71fc2b04a5422e72a14b54dd1e746e7be07)
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 (c) 2012 by Delphix. All rights reserved.
16# Copyright 2014, OmniTI Computer Consulting, Inc. All rights reserved.
17# Copyright 2016, Joyent, Inc.
18#
19
20export MY_TESTS="/opt/header-tests"
21runner="/opt/test-runner/bin/run"
22
23function fail
24{
25	echo $1
26	exit ${2:-1}
27}
28
29function find_runfile
30{
31	typeset distro=
32	if [[ -f $MY_TESTS/runfiles/default.run ]]; then
33		distro=default
34	fi
35
36	[[ -n $distro ]] && echo $MY_TESTS/runfiles/$distro.run
37}
38
39while getopts c:T: c; do
40	case $c in
41	'c')
42		runfile=$OPTARG
43		[[ -f $runfile ]] || fail "Cannot read file: $runfile"
44		;;
45	'T')
46		xargs+=" -T $OPTARG"
47		;;
48	esac
49done
50shift $((OPTIND - 1))
51
52[[ -z $runfile ]] && runfile=$(find_runfile)
53[[ -z $runfile ]] && fail "Couldn't determine distro"
54
55$runner -c $runfile $xargs
56