This is important so that the test suite can verify that "apitrace
diff-images" is actually doing something. The tricky case is when no
images are found to compare. In this case, diff-images exits with
value 0, (no differences), which is valid, but the test suite wants to
know that no comparison happened since that's unexpected, (and should
flag a failure in the test suite).
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):
+ print "Comparing %s and %s\n" % (ref_image, src_image)
comparer = Comparer(ref_image, src_image, options.alpha)
match = comparer.ae(fuzz=options.fuzz) == 0
if match: