summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2025-10-20 18:59:18 +0200
committerChristian Breunig <christian@breunig.cc>2025-10-21 21:03:16 +0200
commit75e235563dfeeb5133376eb56fd8576ad48f8419 (patch)
treefcc9126a37ba0e75b32378f903393be4bb42b6ce /smoketest/scripts/cli
parent156ff1849d58c900f05b5ae568a3776dee530632 (diff)
downloadvyos-1x-75e235563dfeeb5133376eb56fd8576ad48f8419.tar.gz
vyos-1x-75e235563dfeeb5133376eb56fd8576ad48f8419.zip
smoketest: T7858: temporary disable PPPoE client smoketests
Due to an issue in FRR where dynamic PPPoE interfaces sometimes receive an ifIndex of 0 (which is invalid), disable the testcase and add a marker. Test was just recently added in commit 75e9fd60c ("smoketest: T7858: add PPPoE client tests with IPv4, IPv6 and DHCPv6-PD")
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_pppoe.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_pppoe.py b/smoketest/scripts/cli/test_interfaces_pppoe.py
index 5537e3ca3..0e05de706 100755
--- a/smoketest/scripts/cli/test_interfaces_pppoe.py
+++ b/smoketest/scripts/cli/test_interfaces_pppoe.py
@@ -194,7 +194,9 @@ class PPPoEInterfaceTest(VyOSUnitTestSHIM.TestCase):
tmp = self.getFRRopmode('show ip route 0.0.0.0/0', json=True)
# Test if we have a default route 0.0.0.0/0 pointing to our PPPoE interface
tmp = dict_search_recursive(tmp, 'interfaceName')
- self.assertTrue(any(iface == interface for (iface, _) in tmp))
+
+ #self.assertTrue(any(iface == interface for (iface, _) in tmp))
+ self.skipTest('Bug in FRR 10.2 - PPPoE interfaces sometimes carry ifIndex 0 which is invalid')
def test_pppoe_client_disabled_interface(self):
# Check if PPPoE Client can be disabled