diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-05-03 19:39:21 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-05-06 19:18:08 +0200 |
| commit | 136f677b7accfba4be0d3e5519a89958f0b51f32 (patch) | |
| tree | a9a98c7e298586d86cf741a4e3358c8fc3f194cb | |
| parent | 5ec46071d986626766fcda5d5c53267fab63cb25 (diff) | |
| download | vyos-1x-136f677b7accfba4be0d3e5519a89958f0b51f32.tar.gz vyos-1x-136f677b7accfba4be0d3e5519a89958f0b51f32.zip | |
smoketest: T8147: add Kernel option tests for dummy interfaces
| -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 a93991c44..d9b7740c1 100755 --- a/smoketest/scripts/system/test_kernel_options.py +++ b/smoketest/scripts/system/test_kernel_options.py @@ -197,6 +197,12 @@ class TestKernelModules(unittest.TestCase): tmp = re.findall(f'{option}=(y|m)', self._config_data) self.assertTrue(tmp) + def test_dummy(self): + options_to_check = ['CONFIG_DUMMY'] + 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: |
