diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-10-17 20:56:33 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2025-10-17 20:56:33 +0200 |
| commit | e4a6d069b6d33cfa7e1bf19d566b288853befdea (patch) | |
| tree | 2e9bd851fd34a6a2b5698157894a478ca9812b91 | |
| parent | 1b16870043774cf66c5d37ffb281476a42ce8b8b (diff) | |
| download | vyos-1x-e4a6d069b6d33cfa7e1bf19d566b288853befdea.tar.gz vyos-1x-e4a6d069b6d33cfa7e1bf19d566b288853befdea.zip | |
smoketest: T7657: check for Kernel option CONFIG_SLUB_DEBUG
| -rwxr-xr-x | smoketest/scripts/system/test_kernel_options.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py index b418ae172..8fc129117 100755 --- a/smoketest/scripts/system/test_kernel_options.py +++ b/smoketest/scripts/system/test_kernel_options.py @@ -161,5 +161,10 @@ class TestKernelModules(unittest.TestCase): tmp = re.findall(f'{option}=m', self._config_data) self.assertTrue(tmp) + def test_slub(self): + for option in ['CONFIG_SLUB_DEBUG']: + tmp = re.findall(f'{option}=y', self._config_data) + self.assertTrue(tmp) + if __name__ == '__main__': unittest.main(verbosity=2) |
