summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-02-07 17:40:11 +0100
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-02-07 20:54:41 +0000
commit4e4c645b47e81ec54c8b02d2f4377664e5689a86 (patch)
treea422b941d92ba9c355c3b74d802912daf1011a9b /smoketest
parent23b4b7fbe863a83aaa950381ec7930016a741e76 (diff)
downloadvyos-1x-4e4c645b47e81ec54c8b02d2f4377664e5689a86.tar.gz
vyos-1x-4e4c645b47e81ec54c8b02d2f4377664e5689a86.zip
vrf: T5973: module is now statically compiled into the kernel
Always enable VRF strict_mode (cherry picked from commit 117fbcd6237b59f54f2c1c66986a8ce073808c84)
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_vrf.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_vrf.py b/smoketest/scripts/cli/test_vrf.py
index 6207a1b41..a3090ee41 100755
--- a/smoketest/scripts/cli/test_vrf.py
+++ b/smoketest/scripts/cli/test_vrf.py
@@ -53,14 +53,17 @@ class VRFTest(VyOSUnitTestSHIM.TestCase):
# call base-classes classmethod
super(VRFTest, cls).setUpClass()
+ def setUp(self):
+ # VRF strict_most ist always enabled
+ tmp = read_file('/proc/sys/net/vrf/strict_mode')
+ self.assertEqual(tmp, '1')
+
def tearDown(self):
# delete all VRFs
self.cli_delete(base_path)
self.cli_commit()
for vrf in vrfs:
self.assertNotIn(vrf, interfaces())
- # If there is no VRF defined, strict_mode should be off
- self.assertEqual(sysctl_read('net.vrf.strict_mode'), '0')
def test_vrf_vni_and_table_id(self):
base_table = '1000'