summaryrefslogtreecommitdiff
path: root/smoketest/scripts/system
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-05-03 19:37:00 +0200
committerChristian Breunig <christian@breunig.cc>2026-05-03 19:37:24 +0200
commit6d8dc62734c672d443913ec0c55af21c0ebefa0a (patch)
treed236decacf1cd8802e5cc3f3e1f4b37b515716b9 /smoketest/scripts/system
parentda774721c95eb9380690542b74d7f568a972d86a (diff)
downloadvyos-1x-6d8dc62734c672d443913ec0c55af21c0ebefa0a.tar.gz
vyos-1x-6d8dc62734c672d443913ec0c55af21c0ebefa0a.zip
smoketest: T8147: add CONFIG_STP to bridge kernel option list
Diffstat (limited to 'smoketest/scripts/system')
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py
index 3cc22da07..48536da08 100755
--- a/smoketest/scripts/system/test_kernel_options.py
+++ b/smoketest/scripts/system/test_kernel_options.py
@@ -52,7 +52,7 @@ class TestKernelModules(unittest.TestCase):
def test_bridge_interface(self):
# The bridge interface must be enabled in the OS Kernel
- for option in ['CONFIG_BRIDGE',
+ for option in ['CONFIG_STP', 'CONFIG_BRIDGE',
'CONFIG_BRIDGE_IGMP_SNOOPING',
'CONFIG_BRIDGE_VLAN_FILTERING']:
tmp = re.findall(f'{option}=(y|m)', self._config_data)