diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-20 18:24:43 +0000 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-21 13:44:31 +0000 |
commit | 2ac885c665309fc670cec96675ec1f510116fc13 (patch) | |
tree | 56cecf4fdd50ea4f2c0885a5d008c33ef5fce9cb /test/vpp_interface.py | |
parent | bcee60d570d7ad38f46c5bf0b28693557c567a27 (diff) |
IPSEC: Mutli-tunnel tests
Change-Id: I46f1db6579835c6613fdbb2b726246cc62b135fe
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_interface.py')
-rw-r--r-- | test/vpp_interface.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/vpp_interface.py b/test/vpp_interface.py index d586c849b02..7be0d45e39b 100644 --- a/test/vpp_interface.py +++ b/test/vpp_interface.py @@ -463,3 +463,11 @@ class VppInterface(object): def __str__(self): return self.name + + def get_rx_stats(self): + c = self.test.statistics.get_counter("^/if/rx$") + return c[0][self.sw_if_index] + + def get_tx_stats(self): + c = self.test.statistics.get_counter("^/if/tx$") + return c[0][self.sw_if_index] |