Module Name: src Committed By: msaitoh Date: Thu Nov 16 06:31:00 UTC 2017
Modified Files: src/tests/net/if_vlan: t_vlan.sh Log Message: Add test case of vlan(4)'s re-configure without destroy (see also if_vlan.c rev. 1.104). Written by s-yamaguchi@iij. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tests/net/if_vlan/t_vlan.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/net/if_vlan/t_vlan.sh diff -u src/tests/net/if_vlan/t_vlan.sh:1.4 src/tests/net/if_vlan/t_vlan.sh:1.5 --- src/tests/net/if_vlan/t_vlan.sh:1.4 Wed Oct 11 08:10:53 2017 +++ src/tests/net/if_vlan/t_vlan.sh Thu Nov 16 06:31:00 2017 @@ -1,4 +1,4 @@ -# $NetBSD: t_vlan.sh,v 1.4 2017/10/11 08:10:53 msaitoh Exp $ +# $NetBSD: t_vlan.sh,v 1.5 2017/11/16 06:31:00 msaitoh Exp $ # # Copyright (c) 2016 Internet Initiative Japan Inc. # All rights reserved. @@ -456,7 +456,13 @@ vlan_configs_body_common() atf_check -s exit:0 rump.ifconfig vlan0 vlan 10 vlanif shmif0 atf_check -s not-exit:0 -e match:'File exists' \ rump.ifconfig vlan1 vlan 10 vlanif shmif0 - atf_check -s exit:0 rump.ifconfig vlan0 -vlanif + atf_check -s exit:0 rump.ifconfig vlan1 vlan 10 vlanif shmif1 + + atf_check -s exit:0 rump.ifconfig vlan1 -vlanif shmif1 + atf_check -s exit:0 rump.ifconfig vlan1 vlan 10 vlanif shmif1 + + atf_check -s exit:0 rump.ifconfig vlan0 -vlanif shmif0 + atf_check -s exit:0 rump.ifconfig vlan0 vlan 10 vlanif shmif0 } atf_test_case vlan_configs cleanup