summaryrefslogtreecommitdiff
path: root/usr/src/test/util-tests/tests/dladm/common.ksh
blob: e5301d0a5223cbb721be4f24a426b19529f6fd8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/ksh
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#

#
# Copyright 2017 Joyent, Inc.
#

ai_arg0="$(basename $0)"
ai_stub="teststub$$"
ai_vnic="testvnic$$"

typeset property

function fatal
{
	typeset msg="$*"
	[[ -z "$msg" ]] && msg="failed"
	echo "TEST_FAIL: $ai_arg0: $msg" >&2
	exit 1
}

function setup
{
	dladm create-etherstub $ai_stub || fatal "failed to create etherstub"
	dladm create-vnic -l $ai_stub $ai_vnic || fatal "failed to create vnic"
}

function cleanup
{
	dladm delete-vnic $ai_vnic || fatal "failed to remove vnic"
	dladm delete-etherstub $ai_stub || fatal "failed to remove etherstub"
}

function runtest
{
	[[ -z "$property" ]] && fatal "missing property to set"
	dladm set-linkprop -p $property="$@" $ai_vnic 2>/dev/null
}

function epass
{
	runtest $* || fatal "$property=$* failed, expected success\n"
}

function efail
{
	runtest $* && fatal "$property=$* succeeded, expected failure\n"
}