Author Topic: Visual diff for nightly builds (proof of concept)  (Read 11057 times)

a1ex

  • Administrator
  • Hero Member
  • *****
  • Posts: 12564
Visual diff for nightly builds (proof of concept)
« on: June 23, 2014, 10:14:24 AM »
With the recent developments regarding ML emulation in QEMU, it's possible to generate visual diffs of ML interface (automated). This could highlight changes in menu, overlays, or even run automated self-tests for ML in order to spot bugs.

Proof of concept: I've renamed some menu items just to check how it would look like.


The script used to compare the two images:
Code: [Select]
compare a.png b.png -compose src -highlight-color yellow - | convert - -morphology Erode:2 Disk:5 -negate diff.jpg
composite a.png -compose Plus diff.jpg x.jpg
composite b.png -compose Plus diff.jpg y.jpg
montage x.jpg y.jpg -geometry 50%x50%+5+5 z.jpg

Interested in integrating this tool on the nightly builds page?

The biggest advantage IMO will be that you will no longer risk downloading untested builds; they will be self-tested. Of course, only on the feature subset that runs in the emulator, but still, much better than nothing.

a1ex

  • Administrator
  • Hero Member
  • *****
  • Posts: 12564
Re: Visual diff for nightly builds (proof of concept)
« Reply #1 on: July 16, 2014, 09:46:18 PM »
Tweaked the algorithm a bit:


and tried it on a real-world changeset: 47e2aa1


How many of you noticed this recent addition from dmilligan in the change log? With this trick, it would be obvious what's new.