diff options
author | Florin Coras <fcoras@cisco.com> | 2019-06-27 10:32:27 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2019-06-27 21:30:36 +0000 |
commit | b4ca8b11e4204bb95e47cd4b15f3b7430f160c00 (patch) | |
tree | c0140ec90590423f9e4454c687b78495a4b325d9 /test | |
parent | 28fa8cbc6c635758db1a885fd5ae2ff8719569c3 (diff) |
sctp: add option to enable/disable
Type: feature
By default sctp is disabled to avoid wasting cycles.
Change-Id: I1e2f764c7168b5c15062efbe5895de93dcc2614e
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_sctp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_sctp.py b/test/test_sctp.py index e1faa9a0c1d..59dcfd35ded 100644 --- a/test/test_sctp.py +++ b/test/test_sctp.py @@ -20,6 +20,7 @@ class TestSCTP(VppTestCase): def setUp(self): super(TestSCTP, self).setUp() self.vapi.session_enable_disable(is_enabled=1) + self.vapi.cli("sctp enable") self.create_loopback_interfaces(2) table_id = 0 |