summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-16 15:40:47 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-16 15:40:47 +0000
commit883b202c58eed5158abc3e73c5e6bccda8bdbff3 (patch)
treed7d14038f80f62916f97dcf232b2f89d8a7a381d
parent5bda316fb3b62cc5d6efe466e822293615b8586b (diff)
downloadnetsurf-883b202c58eed5158abc3e73c5e6bccda8bdbff3.tar.gz
netsurf-883b202c58eed5158abc3e73c5e6bccda8bdbff3.tar.bz2
monkey driver: Print the bitmap plot-check.
-rwxr-xr-xtest/monkey_driver.py1
1 files changed, 1 insertions, 0 deletions
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)))