From 06dae2734aee09885e34aec0df397985c2a36961 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Mon, 24 May 2021 09:38:43 +0200 Subject: smoketest: vif: T3570: fix vlan interface MTU test for pseudo-ethernet interfaces The MTU size of the source-interface must be greater or equal to the MTU of the pseudo ethernet interface. --- smoketest/scripts/cli/base_interfaces_test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'smoketest/scripts/cli/base_interfaces_test.py') diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index 44f99ffab..7f69b8444 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -323,6 +323,10 @@ class BasicInterfaceTest: self.cli_set(base + ['mtu', mtu_1500]) for option in self._options.get(interface, []): self.cli_set(base + option.split()) + if 'source-interface' in option: + iface = option.split()[-1] + iface_type = Section.section(iface) + self.cli_set(['interfaces', iface_type, iface, 'mtu', mtu_9000]) for vlan in self._vlan_range: base = self._base_path + [interface, 'vif', vlan] @@ -350,7 +354,7 @@ class BasicInterfaceTest: self.assertEqual(tmp['mtu'], int(mtu_9000)) - def test_vif_qos_change(self): + def test_vif_8021q_qos_change(self): # XXX: This testcase is not allowed to run as first testcase, reason # is the Wireless test will first load the wifi kernel hwsim module # which creates a wlan0 and wlan1 interface which will fail the -- cgit v1.2.3