summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_system_option.py
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-04-24 15:43:36 +0300
committerGitHub <noreply@github.com>2026-04-24 15:43:36 +0300
commit0cc2bbfc54370cce2d2c7540fb155e464207f1be (patch)
tree2b608d1bbed6c35524accec3bfd2d178519b6307 /smoketest/scripts/cli/test_system_option.py
parentbce0b25640665f105f3fd270f6ba9571d14fb6e6 (diff)
parent9cb6f4c001fa5d4f4ed26850fc99dde4c3692c8f (diff)
downloadvyos-1x-0cc2bbfc54370cce2d2c7540fb155e464207f1be.tar.gz
vyos-1x-0cc2bbfc54370cce2d2c7540fb155e464207f1be.zip
Merge pull request #5130 from natali-rs1985/T8460
vpp: T8460: Use isolated cpus for VPP cpu-cores
Diffstat (limited to 'smoketest/scripts/cli/test_system_option.py')
-rwxr-xr-xsmoketest/scripts/cli/test_system_option.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_system_option.py b/smoketest/scripts/cli/test_system_option.py
index 5a8e5b78c..e025c01ab 100755
--- a/smoketest/scripts/cli/test_system_option.py
+++ b/smoketest/scripts/cli/test_system_option.py
@@ -104,12 +104,10 @@ class TestSystemOption(VyOSUnitTestSHIM.TestCase):
def test_kernel_options(self):
amd_pstate_mode = 'active'
- isolate_cpus = '1,2,3'
nohz_full = '2'
rcu_no_cbs = '1,2,4-5'
self.cli_set(['system', 'option', 'kernel', 'cpu', 'disable-nmi-watchdog'])
- self.cli_set(['system', 'option', 'kernel', 'cpu', 'isolate-cpus', isolate_cpus])
self.cli_set(['system', 'option', 'kernel', 'cpu', 'nohz-full', nohz_full])
self.cli_set(['system', 'option', 'kernel', 'cpu', 'rcu-no-cbs', rcu_no_cbs])
self.cli_set(['system', 'option', 'kernel', 'disable-hpet'])
@@ -138,7 +136,6 @@ class TestSystemOption(VyOSUnitTestSHIM.TestCase):
self.assertIn(' hpet=disable', tmp)
self.assertIn(' mce=off', tmp)
self.assertIn(' nosoftlockup', tmp)
- self.assertIn(f' isolcpus={isolate_cpus}', tmp)
self.assertIn(f' nohz_full={nohz_full}', tmp)
self.assertIn(f' rcu_nocbs={rcu_no_cbs}', tmp)
self.assertIn(' numa_balancing=disable', tmp)