From c79b32deb018b0adfcf96d878dffaaaa9a1fd6b1 Mon Sep 17 00:00:00 2001 From: Steven Luong Date: Tue, 18 Jun 2019 09:56:07 -0700 Subject: tests: fix checkstyle failure in test_stats_client.py New job submitted to Jenkins reported checkstyle failure in test_stats_client.py. It needs a blank line in one place and line is too long in another place. Type: fix Change-Id: I9b18df1df449a287570d614d6c5b514ceb88480c Signed-off-by: Steven Luong --- test/test_stats_client.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_stats_client.py b/test/test_stats_client.py index 672a77a0e0a..dcbf0fedbc0 100644 --- a/test/test_stats_client.py +++ b/test/test_stats_client.py @@ -42,6 +42,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 +59,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) -- cgit 1.2.3-korg