From 008de61e08435360ad3a55eb8202becec4bd83b8 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Mon, 27 Jul 2020 22:39:58 +0200 Subject: [PATCH] sgsn: Use the new NS2 api The new NS2 api supports NSE with multiple NS-VC and contains a NS-VC fsm. FR/GRE support is not working. The configuration is compatible except for FR/GRE. Relates: OS#4629 Depends-on: Iaad7b53d44338e5dd81dc2202f23bdcb715af804 (libosmocore) Depends-on: I6cef42749555e577d5573f2ed8b8bce4cf842a98 (libosmocore) Change-Id: I92a3bcaf166b091a22d74c7c1586964d33d7cc9d --- tests/vty_test_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vty_test_runner.py b/tests/vty_test_runner.py index 4fb67cb9..92466bb0 100755 --- a/tests/vty_test_runner.py +++ b/tests/vty_test_runner.py @@ -141,7 +141,7 @@ class TestVTYSGSN(TestVTYBase): def testVtyShow(self): res = self.vty.command("show ns") - self.assertTrue(res.find('Encapsulation NS-UDP-IP') >= 0) + self.assertTrue(res.find('0 NS-VC:') >= 0) self.assertTrue(self.vty.verify('show bssgp', [''])) self.assertTrue(self.vty.verify('show bssgp stats', [''])) self.assertTrue(self.vty.verify('show bssgp nsei 123', ['']))