Commit 03be5cc73420f9d8493c5773285ac9444bab681e
1 parent
2036323b
Exists in
master
and in
11 other branches
Fix bug with ImageMagick (cf. https://github.com/ImageMagick/ImageMagick/issues/1012)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
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)); | ... | ... |