From 987abe9eeb65a3950401073c770012a7898593b7 Mon Sep 17 00:00:00 2001 From: Andrew Yourtchenko Date: Wed, 27 Sep 2017 13:50:31 +0200 Subject: acl-plugin: take 2 at VPP-991 fix, this time with a test case which verifies it. The replacement of [] with pool_elt_at_index and subsequent fixing it was incorrect - it was equivalent to &[], since it returns a pointer to the element. I've added VPP-993 previously to create a testcase, so this commit partially fulfills that one as well. Change-Id: I5b15e3ce48316f0429232aacf885e8f7c63d9522 Signed-off-by: Andrew Yourtchenko --- test/vpp_papi_provider.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/vpp_papi_provider.py') diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 97f201d3..634dabea 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -2293,6 +2293,16 @@ class VppPapiProvider(object): 'tag': tag}, expected_retval=expected_retval) + def acl_del(self, acl_index, expected_retval=0): + """ + + :param acl_index: + :return: + """ + return self.api(self.papi.acl_del, + {'acl_index': acl_index}, + expected_retval=expected_retval) + def acl_interface_set_acl_list(self, sw_if_index, n_input, acls, expected_retval=0): return self.api(self.papi.acl_interface_set_acl_list, -- cgit 1.2.3-korg