diff options
author | Steven Luong <sluong@cisco.com> | 2019-06-18 09:56:07 -0700 |
---|---|---|
committer | Steven Luong <sluong@cisco.com> | 2019-06-18 16:14:43 -0700 |
commit | c79b32deb018b0adfcf96d878dffaaaa9a1fd6b1 (patch) | |
tree | 124bad4efb98e090b23cb2105e74e842b35320bc /test/test_stats_client.py | |
parent | 540a8dacbe0da88fde97a6c1201d6e1ba95c5cf6 (diff) |
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 <sluong@cisco.com>
Diffstat (limited to 'test/test_stats_client.py')
-rw-r--r-- | test/test_stats_client.py | 5 |
1 files changed, 4 insertions, 1 deletions
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) |