summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-10-02 19:09:00 +0200
committerChristian Breunig <christian@breunig.cc>2023-10-02 19:09:00 +0200
commitbaa12ccf0f6eb092099a9e17444e9efd86a59fcc (patch)
treec3793090d3b2bdf2a1497a0bfe89320d1899fe33 /smoketest
parent9dd5ff064a37b4e884f7bd9fb7630bf7829fa1ad (diff)
downloadvyos-1x-baa12ccf0f6eb092099a9e17444e9efd86a59fcc.tar.gz
vyos-1x-baa12ccf0f6eb092099a9e17444e9efd86a59fcc.zip
smoketests: T5626: verify Kernel options required for containers
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py
index a39ae50bc..0e3cbd0ed 100755
--- a/smoketest/scripts/system/test_kernel_options.py
+++ b/smoketest/scripts/system/test_kernel_options.py
@@ -76,7 +76,6 @@ class TestKernelModules(unittest.TestCase):
self.assertTrue(tmp)
def test_qemu_support(self):
- # The bond/lacp interface must be enabled in the OS Kernel
for option in ['CONFIG_VIRTIO_BLK', 'CONFIG_SCSI_VIRTIO',
'CONFIG_VIRTIO_NET', 'CONFIG_VIRTIO_CONSOLE',
'CONFIG_VIRTIO', 'CONFIG_VIRTIO_PCI',
@@ -86,11 +85,14 @@ class TestKernelModules(unittest.TestCase):
self.assertTrue(tmp)
def test_vmware_support(self):
- # The bond/lacp interface must be enabled in the OS Kernel
for option in ['CONFIG_VMXNET3']:
tmp = re.findall(f'{option}=(y|m)', config)
self.assertTrue(tmp)
+ def test_container_cgroup_support(self):
+ for option in ['CONFIG_CGROUPS', 'CONFIG_MEMCG', 'CONFIG_CGROUP_PIDS', 'CONFIG_CGROUP_BPF']:
+ tmp = re.findall(f'{option}=(y|m)', config)
+ self.assertTrue(tmp)
if __name__ == '__main__':
unittest.main(verbosity=2)