Commit 03be5cc73420f9d8493c5773285ac9444bab681e

Authored by Benjamin Renard
1 parent 2036323b

Fix bug with ImageMagick (cf. https://github.com/ImageMagick/ImageMagick/issues/1012)

test/DD_Client/CSlimFixtures/ScriptTestAmdaCommandLine.cpp
... ... @@ -681,7 +681,7 @@ static char* compareImg1Img2ImgDiff(void */*fixture*/, SlimList *args) {
681 681 }
682 682  
683 683 char command [2048];
684   - sprintf (command, "compare %s %s %s",
  684 + sprintf (command, "compare -metric AE %s %s %s",
685 685 SlimList_GetStringAt(args, 0),
686 686 SlimList_GetStringAt(args, 1),
687 687 SlimList_GetStringAt(args, 2));
... ...