From d2d7112462378739bf96775f547837431375ff4d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 9 Apr 2012 13:45:33 -0700 Subject: [PATCH] apitrace diff-images: Print one line for each file being compared. 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). --- scripts/snapdiff.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/snapdiff.py b/scripts/snapdiff.py index 61814d8..7ae3a43 100755 --- a/scripts/snapdiff.py +++ b/scripts/snapdiff.py @@ -203,6 +203,7 @@ def main(): 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: -- 2.43.0