diff options
| author | Christian Breunig <christian@breunig.cc> | 2025-10-18 13:24:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-18 13:24:30 +0200 |
| commit | b96e904cea9d5165b0b2cb2c1b318a22a127ff3a (patch) | |
| tree | 44fd9a82d561d192f0ce4b7507a921d7046bf71e | |
| parent | 69a9b93f71c818bf134ea06ad73d86a513628f06 (diff) | |
| parent | e4a6d069b6d33cfa7e1bf19d566b288853befdea (diff) | |
| download | vyos-1x-b96e904cea9d5165b0b2cb2c1b318a22a127ff3a.tar.gz vyos-1x-b96e904cea9d5165b0b2cb2c1b318a22a127ff3a.zip | |
Merge pull request #4798 from c-po/t7657-smoketest
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) |
