1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0-or-later 3# Copyright (c) 2018 Petr Vorel <[email protected]> 4# Copyright (c) 2015 Oracle and/or its affiliates. All Rights Reserved. 5# Author: Alexey Kodanev <[email protected]> 6# 7# Local test, check if we can create and then delete VLAN 8# interface 4095 times. 9 10virt_type="vlan" 11 12TST_TESTFUNC=do_test 13 14do_test() 15{ 16 virt_add_delete_test "id 4094" 17} 18 19. virt_lib.sh 20tst_run 21