From f1fd7f1e01bd9901fab7b5f33183e310bf0c0fd6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 11 Aug 2017 09:54:16 -0400 Subject: [PATCH] - try adding the prints back in and re-test Change-Id: I3a82b06ecc3c065240cc05871dee2881f20e414e --- test/aaa_profiling/test_memusage.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 4409a9e968..dfb4a49553 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -82,19 +82,19 @@ def profile_memory(maxtimes=250, latest_max = max(samples[-5:]) if latest_max > max_: - #print( - # "Max grew from %s to %s, max has " - # "grown for %s samples" % ( - # max_, latest_max, max_grew_for - # ) - #) + print( + "Max grew from %s to %s, max has " + "grown for %s samples" % ( + max_, latest_max, max_grew_for + ) + ) max_ = latest_max max_grew_for += 1 until_maxtimes += 1 continue else: - #print("Max remained at %s, %s more attempts left" % - # (max_, max_grew_for)) + print("Max remained at %s, %s more attempts left" % + (max_, max_grew_for)) max_grew_for -= 1 if max_grew_for == 0: success = True -- 2.47.3