GraphicsMagick: icc-transform.tap: Preserve output files from cc...
GraphicsMagick Commits <[email protected]>
| Newsgroups | gmane.comp.video.graphicsmagick.cvs |
|---|---|
| Message-ID | <mailman.16732.1663425853.11362.graphicsmagick-commit@lists.sourceforge.net> |
changeset ba71e0bd68a4 in /hg/GraphicsMagick details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=ba71e0bd68a4 summary: icc-transform.tap: Preserve output files from cc-transform.tap until 'make clean' diffstat: ChangeLog | 5 +++++ Makefile.in | 3 ++- VisualMagick/installer/inc/version.isx | 4 ++-- magick/version.h | 4 ++-- utilities/Makefile.am | 3 ++- utilities/tests/icc-transform.tap | 6 ++---- www/Changelog.html | 7 +++++++ 7 files changed, 22 insertions(+), 10 deletions(-) diffs (118 lines): diff -r 6f8bcf12e54a -r ba71e0bd68a4 ChangeLog --- a/ChangeLog Thu Sep 15 08:42:57 2022 -0500 +++ b/ChangeLog Sat Sep 17 09:44:01 2022 -0500 @@ -1,3 +1,8 @@ +2022-09-17 Bob Friesenhahn <[email protected]> + + * utilities/tests/icc-transform.tap: Preserve output files from + icc-transform.tap until 'make clean' in order to allow inspection. + 2022-09-15 Bob Friesenhahn <[email protected]> * fuzzing/oss-fuzz-build.sh: Disable using libxml2 in oss-fuzz diff -r 6f8bcf12e54a -r ba71e0bd68a4 Makefile.in --- a/Makefile.in Thu Sep 15 08:42:57 2022 -0500 +++ b/Makefile.in Sat Sep 17 09:44:01 2022 -0500 @@ -117,7 +117,7 @@ # Makefile for building Wand API HTML files # -# Copyright (C) 2004-2018 GraphicsMagick Group +# Copyright (C) 2004-2022 GraphicsMagick Group # # This program is covered by multiple licenses, which are described in # Copyright.txt. You should have received a copy of Copyright.txt with this @@ -4805,6 +4805,7 @@ utilities/tests/sunrise.miff UTILITIES_CLEANFILES = \ + utilities/tests/*_out.icc \ utilities/tests/*_out.miff \ utilities/tests/*_out.pnm \ utilities/tests/*_out.txt \ diff -r 6f8bcf12e54a -r ba71e0bd68a4 VisualMagick/installer/inc/version.isx --- a/VisualMagick/installer/inc/version.isx Thu Sep 15 08:42:57 2022 -0500 +++ b/VisualMagick/installer/inc/version.isx Sat Sep 17 09:44:01 2022 -0500 @@ -10,5 +10,5 @@ #define public MagickPackageName "GraphicsMagick" #define public MagickPackageVersion "1.4" -#define public MagickPackageVersionAddendum ".020220915" -#define public MagickPackageReleaseDate "snapshot-20220915" +#define public MagickPackageVersionAddendum ".020220917" +#define public MagickPackageReleaseDate "snapshot-20220917" diff -r 6f8bcf12e54a -r ba71e0bd68a4 magick/version.h --- a/magick/version.h Thu Sep 15 08:42:57 2022 -0500 +++ b/magick/version.h Sat Sep 17 09:44:01 2022 -0500 @@ -38,8 +38,8 @@ #define MagickLibVersion 0x272400 #define MagickLibVersionText "1.4" #define MagickLibVersionNumber 27,24,0 -#define MagickChangeDate "20220915" -#define MagickReleaseDate "snapshot-20220915" +#define MagickChangeDate "20220917" +#define MagickReleaseDate "snapshot-20220917" /* The MagickLibInterfaceNewest and MagickLibInterfaceOldest defines diff -r 6f8bcf12e54a -r ba71e0bd68a4 utilities/Makefile.am --- a/utilities/Makefile.am Thu Sep 15 08:42:57 2022 -0500 +++ b/utilities/Makefile.am Sat Sep 17 09:44:01 2022 -0500 @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2018 GraphicsMagick Group +# Copyright (C) 2004-2022 GraphicsMagick Group # # This program is covered by multiple licenses, which are described in # Copyright.txt. You should have received a copy of Copyright.txt with this @@ -51,6 +51,7 @@ utilities/tests/sunrise.miff UTILITIES_CLEANFILES = \ + utilities/tests/*_out.icc \ utilities/tests/*_out.miff \ utilities/tests/*_out.pnm \ utilities/tests/*_out.txt \ diff -r 6f8bcf12e54a -r ba71e0bd68a4 utilities/tests/icc-transform.tap --- a/utilities/tests/icc-transform.tap Thu Sep 15 08:42:57 2022 -0500 +++ b/utilities/tests/icc-transform.tap Sat Sep 17 09:44:01 2022 -0500 @@ -1,6 +1,6 @@ #!/bin/sh # -*- shell-script -*- -# Copyright (C) 2004-2012 GraphicsMagick Group +# Copyright (C) 2004-2022 GraphicsMagick Group # Test ICC Transforms . ./common.shi . ${top_srcdir}/utilities/tests/common.sh @@ -8,7 +8,7 @@ # Number of tests we plan to execute test_plan_fn 3 -ORIGINAL_PROFILE=sunrise.icc +ORIGINAL_PROFILE=sunrise_out.icc IMAGE_OUTPUT=ICCTransform_out.miff rm -f ${ORIGINAL_PROFILE} @@ -16,6 +16,4 @@ test_command_fn 'Extract ICC profile' ${GM} convert ${SUNRISE_MIFF} ${ORIGINAL_PROFILE} test_command_fn 'Apply ICC profile and then reverse it' -F LCMS ${GM} convert ${SUNRISE_MIFF} -profile ${BETARGB_PROFILE} -profile ${ORIGINAL_PROFILE} -compress ${MIFF_COMPRESS} ${IMAGE_OUTPUT} test_command_fn 'Verify results' ${GM} compare -maximum-error 0.004 -metric MAE ${SUNRISE_MIFF} ${IMAGE_OUTPUT} -rm -f ${ORIGINAL_PROFILE} -rm -f ${IMAGE_OUTPUT} : diff -r 6f8bcf12e54a -r ba71e0bd68a4 www/Changelog.html --- a/www/Changelog.html Thu Sep 15 08:42:57 2022 -0500 +++ b/www/Changelog.html Sat Sep 17 09:44:01 2022 -0500 @@ -35,6 +35,13 @@ <div class="document"> +<p>2022-09-17 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> +<blockquote> +<ul class="simple"> +<li>utilities/tests/icc-transform.tap: Preserve output files from +icc-transform.tap until 'make clean' in order to allow inspection.</li> +</ul> +</blockquote> <p>2022-09-15 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> <blockquote> <ul class="simple">