diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2025-10-16 15:04:28 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-16 15:04:28 +0300 |
| commit | d8dc670cd3eb7c9d0e41d8211284e1469657cc42 (patch) | |
| tree | c799075502db2f43530a4ac94e285661aa5f0825 /smoketest/scripts/cli/test_vpp.py | |
| parent | 4f46ade201e49d78a376d76f3dfd541c41f8636d (diff) | |
| parent | 5e2e4a8f183f9723d4967ce47045f8789b58e924 (diff) | |
| download | vyos-1x-d8dc670cd3eb7c9d0e41d8211284e1469657cc42.tar.gz vyos-1x-d8dc670cd3eb7c9d0e41d8211284e1469657cc42.zip | |
Merge pull request #4781 from natali-rs1985/T7897
T7897: VPP: fix rx-mode interrupt for XDP driver with workers
Diffstat (limited to 'smoketest/scripts/cli/test_vpp.py')
| -rwxr-xr-x | smoketest/scripts/cli/test_vpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_vpp.py b/smoketest/scripts/cli/test_vpp.py index 19e24e7f4..6b8f3061d 100755 --- a/smoketest/scripts/cli/test_vpp.py +++ b/smoketest/scripts/cli/test_vpp.py @@ -1101,7 +1101,7 @@ class TestVPP(VyOSUnitTestSHIM.TestCase): # DPDK driver expect only dpdk-options and not xdp-options to be set # expect raise ConfigError - self.cli_set(base_interface_path + ['xdp-options', 'no-syscall-lock']) + self.cli_set(base_interface_path + ['xdp-options', 'zero-copy']) with self.assertRaises(ConfigSessionError): self.cli_commit() |
