From 883b202c58eed5158abc3e73c5e6bccda8bdbff3 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 16 Feb 2019 15:40:47 +0000 Subject: monkey driver: Print the bitmap plot-check. --- test/monkey_driver.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/monkey_driver.py b/test/monkey_driver.py index 17c0c6e26..2bf389323 100755 --- a/test/monkey_driver.py +++ b/test/monkey_driver.py @@ -231,6 +231,7 @@ def run_test_step_action_plot_check(ctx, step): print("Check {} NOT in {}".format(repr(check['text-not-contains']),repr(all_text))) assert(check['text-not-contains'] not in all_text) elif 'bitmap-count' in check.keys(): + print("Check bitmap count is {}".format(int(check['bitmap-count']))) assert(len(bitmaps) == int(check['bitmap-count'])) else: raise AssertionError("Unknown check: {}".format(repr(check))) -- cgit v1.2.3