X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=scripts%2Fsnapdiff.py;h=37fe8897ea6fdb917a55de49aa91d2e0b5564dc6;hb=b3b6d733ee93c9438e2d2fa8b490cb0690b74a2e;hp=291b2da9425d71e4e075bec9d66fb049fd018daa;hpb=4644dc65e83c56ba0bb577f57cd20e7419f3ade4;p=apitrace diff --git a/scripts/snapdiff.py b/scripts/snapdiff.py index 291b2da..37fe889 100755 --- a/scripts/snapdiff.py +++ b/scripts/snapdiff.py @@ -192,22 +192,27 @@ def main(): html.write(' \n') html.write(' \n') html.write(' \n' % (ref_prefix, src_prefix)) + failures = 0 for image in images: ref_image = ref_prefix + image src_image = src_prefix + image root, ext = os.path.splitext(src_image) delta_image = "%s.diff.png" % (root, ) if os.path.exists(ref_image) and os.path.exists(src_image): + comparer = Comparer(ref_image, src_image, options.alpha) if options.overwrite \ or not os.path.exists(delta_image) \ or (os.path.getmtime(delta_image) < os.path.getmtime(ref_image) \ and os.path.getmtime(delta_image) < os.path.getmtime(src_image)): - comparer = Comparer(ref_image, src_image, options.alpha) comparer.write_diff(delta_image, fuzz=options.fuzz) - + if comparer.ae(fuzz=options.fuzz) == 0: + bgcolor = '#20ff20' + else: + failures += 1 + bgcolor = '#ff2020' html.write(' \n') - html.write(' \n' % (image,)) + html.write(' \n' % (bgcolor, image)) surface(html, ref_image) surface(html, src_image) surface(html, delta_image) @@ -217,6 +222,8 @@ def main(): html.write(' \n') html.write('\n') + if failures: + sys.exit(1) if __name__ == '__main__': main()
File%s%sΔ
%s%s