diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-05-03 19:38:48 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-05-03 19:38:48 +0200 |
| commit | c79b79d586ada4cfdec745780e9d046bdcb1d761 (patch) | |
| tree | a427051d22692a15366d8110dd75ae5b410c6a83 /smoketest/scripts/system | |
| parent | 6d8dc62734c672d443913ec0c55af21c0ebefa0a (diff) | |
| download | vyos-1x-c79b79d586ada4cfdec745780e9d046bdcb1d761.tar.gz vyos-1x-c79b79d586ada4cfdec745780e9d046bdcb1d761.zip | |
smoketest: T8147: add Kernel option tests for WireGuard
Diffstat (limited to 'smoketest/scripts/system')
| -rwxr-xr-x | smoketest/scripts/system/test_kernel_options.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py index 48536da08..6866c7b5e 100755 --- a/smoketest/scripts/system/test_kernel_options.py +++ b/smoketest/scripts/system/test_kernel_options.py @@ -179,6 +179,12 @@ class TestKernelModules(unittest.TestCase): tmp = re.findall(f'{option}=(y|m)', self._config_data) self.assertTrue(tmp) + def test_wireguard(self): + options_to_check = ['CONFIG_WIREGUARD'] + for option in options_to_check: + tmp = re.findall(f'{option}=(y|m)', self._config_data) + self.assertTrue(tmp) + def test_arm64(self): # Only required on arm64 platforms if not IS_ARM64: |
