ikev2: support responder hostname
[vpp.git] / test / test_stats_client.py
index 672a77a..300e820 100644 (file)
@@ -1,13 +1,14 @@
-#!/usr/bin/env python2.7
+#!/usr/bin/env python3
 
 import unittest
-import time
 import psutil
 from vpp_papi.vpp_stats import VPPStats
 
+from framework import tag_fixme_vpp_workers
 from framework import VppTestCase, VppTestRunner
 
 
+@tag_fixme_vpp_workers
 class StatsClientTestCase(VppTestCase):
     """Test Stats Client"""
 
@@ -42,6 +43,7 @@ class StatsClientTestCase(VppTestCase):
                          "is not equal to "
                          "ending client side file descriptor count: %s" % (
                              initial_fds, ending_fds))
+
     @unittest.skip("Manual only")
     def test_mem_leak(self):
         def loop():
@@ -58,7 +60,9 @@ class StatsClientTestCase(VppTestCase):
         for j in range(100):
             loop()
         print(self.vapi.cli("show memory stats-segment verbose"))
-        print('AFTER', before, self.statistics.get_counter('/mem/statseg/used'))
+        print('AFTER', before,
+              self.statistics.get_counter('/mem/statseg/used'))
+
 
 if __name__ == '__main__':
     unittest.main(testRunner=VppTestRunner)