You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
648 B
25 lines
648 B
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (c) 2018 Petr Vorel <pvorel@suse.cz>
|
|
# Copyright (c) 2015 Oracle and/or its affiliates. All Rights Reserved.
|
|
# Author: Alexey Kodanev <alexey.kodanev@oracle.com>
|
|
#
|
|
# Local test, check if we can create multiple VLAN interfaces.
|
|
|
|
p0="protocol 802.1Q"
|
|
p1="protocol 802.1ad"
|
|
lb0="loose_binding off"
|
|
lb1="loose_binding on"
|
|
rh0="reorder_hdr off"
|
|
rh1="reorder_hdr on"
|
|
|
|
virt_type="vlan"
|
|
|
|
TST_TEST_DATA=",$p0 $lb0 $rh0,$p0 $lb0 $rh1,$p0 $lb1 $rh0,$p0 $lb1 $rh1,\
|
|
$p1 $lb0 $rh0,$p1 $lb0 $rh1,$p1 $lb1 $rh0,$p1 $lb1 $rh1"
|
|
TST_TEST_DATA_IFS=","
|
|
TST_TESTFUNC=virt_test_01
|
|
. virt_lib.sh
|
|
|
|
tst_run
|