{ "Compare", CompareValidate, UndefinedOptionFlag, MagickFalse },
{ "Composite", CompositeValidate, UndefinedOptionFlag, MagickFalse },
{ "Convert", ConvertValidate, UndefinedOptionFlag, MagickFalse },
- { "FormatsInMemory", FormatsInMemoryValidate, UndefinedOptionFlag, MagickFalse },
- { "FormatsOnDisk", FormatsOnDiskValidate, UndefinedOptionFlag, MagickFalse },
+ { "FormatsDisk", FormatsDiskValidate, UndefinedOptionFlag, MagickFalse },
+ { "FormatsMap", FormatsMapValidate, UndefinedOptionFlag, MagickFalse },
+ { "FormatsMemory", FormatsMemoryValidate, UndefinedOptionFlag, MagickFalse },
{ "Identify", IdentifyValidate, UndefinedOptionFlag, MagickFalse },
{ "ImportExport", ImportExportValidate, UndefinedOptionFlag, MagickFalse },
{ "Montage", MontageValidate, UndefinedOptionFlag, MagickFalse },
CompareValidate = 0x00002,
CompositeValidate = 0x00004,
ConvertValidate = 0x00008,
- FormatsInMemoryValidate = 0x00010,
- FormatsOnDiskValidate = 0x00020,
- IdentifyValidate = 0x00040,
- ImportExportValidate = 0x00080,
- MontageValidate = 0x00100,
- StreamValidate = 0x00200,
+ FormatsDiskValidate = 0x00010,
+ FormatsMapValidate = 0x00020,
+ FormatsMemoryValidate = 0x00040,
+ IdentifyValidate = 0x00080,
+ ImportExportValidate = 0x00100,
+ MontageValidate = 0x00200,
+ StreamValidate = 0x00400,
AllValidate = 0x7fffffff
} ValidateType;
*/
#define MagickPackageName "ImageMagick"
#define MagickCopyright "Copyright (C) 1999-2013 ImageMagick Studio LLC"
-#define MagickSVNRevision "12412:12419"
+#define MagickSVNRevision "12412:12442M"
#define MagickLibVersion 0x700
#define MagickLibVersionText "7.0.0"
#define MagickLibVersionNumber 1,0,0
#define MagickLibAddendum "-0"
#define MagickLibInterface 1
#define MagickLibMinInterface 1
-#define MagickReleaseDate "2013-06-05"
+#define MagickReleaseDate "2013-06-12"
#define MagickChangeDate "20120427"
#define MagickAuthoritativeURL "http://www.imagemagick.org"
#define MagickFeatures "DPC HDRI OpenMP"
tests/validate-compare.tap \
tests/validate-composite.tap \
tests/validate-convert.tap \
+ tests/validate-formats-disk.tap \
+ tests/validate-formats-map.tap \
+ tests/validate-formats-memory.tap \
tests/validate-identify.tap \
tests/validate-import.tap \
tests/validate-montage.tap \
tests/validate-stream.tap \
- tests/validate-formats-in-memory.tap \
- tests/validate-formats-on-disk.tap \
tests/drawtest.tap \
tests/wandtest.tap
MAGICK_VERSION=7.0.0-0
-MAGICK_SVN_REVISION=12412:12419
+MAGICK_SVN_REVISION=12412:12442M
# Substitute library versioning
tests/validate-compare.tap \
tests/validate-composite.tap \
tests/validate-convert.tap \
+ tests/validate-formats-disk.tap \
+ tests/validate-formats-map.tap \
+ tests/validate-formats-memory.tap \
tests/validate-identify.tap \
tests/validate-import.tap \
tests/validate-montage.tap \
tests/validate-stream.tap \
- tests/validate-formats-in-memory.tap \
- tests/validate-formats-on-disk.tap \
tests/drawtest.tap \
tests/wandtest.tap
. ${srcdir}/tests/common.shi
echo "1..1"
-${VALIDATE} -validate formats-on-disk && echo "ok" || echo "not ok"
+${VALIDATE} -validate formats-disk && echo "ok" || echo "not ok"
:
. ${srcdir}/tests/common.shi
echo "1..1"
-${VALIDATE} -validate formats-in-memory && echo "ok" || echo "not ok"
+${VALIDATE} -validate formats-memory && echo "ok" || echo "not ok"
:
if ((type & ConvertValidate) != 0)
tests+=ValidateConvertCommand(image_info,reference_filename,
output_filename,&fail,exception);
- if ((type & FormatsInMemoryValidate) != 0)
+ if ((type & FormatsDiskValidate) != 0)
{
- (void) FormatLocaleFile(stdout,"[pixel-cache: memory] ");
- tests+=ValidateImageFormatsInMemory(image_info,reference_filename,
- output_filename,&fail,exception);
- (void) FormatLocaleFile(stdout,"[pixel-cache: memory-mapped] ");
memory_resource=SetMagickResourceLimit(MemoryResource,0);
+ map_resource=SetMagickResourceLimit(MapResource,0);
+ (void) FormatLocaleFile(stdout,"[pixel-cache: disk] ");
tests+=ValidateImageFormatsInMemory(image_info,reference_filename,
output_filename,&fail,exception);
(void) FormatLocaleFile(stdout,"[pixel-cache: disk] ");
- map_resource=SetMagickResourceLimit(MapResource,0);
- tests+=ValidateImageFormatsInMemory(image_info,reference_filename,
+ tests+=ValidateImageFormatsOnDisk(image_info,reference_filename,
output_filename,&fail,exception);
(void) SetMagickResourceLimit(MemoryResource,memory_resource);
(void) SetMagickResourceLimit(MapResource,map_resource);
}
- if ((type & FormatsOnDiskValidate) != 0)
+ if ((type & FormatsMapValidate) != 0)
{
- (void) FormatLocaleFile(stdout,"[pixel-cache: memory] ");
- tests+=ValidateImageFormatsOnDisk(image_info,reference_filename,
+ memory_resource=SetMagickResourceLimit(MemoryResource,0);
+ (void) FormatLocaleFile(stdout,"[pixel-cache: memory-mapped] ");
+ tests+=ValidateImageFormatsInMemory(image_info,reference_filename,
output_filename,&fail,exception);
(void) FormatLocaleFile(stdout,"[pixel-cache: memory-mapped] ");
- memory_resource=SetMagickResourceLimit(MemoryResource,0);
tests+=ValidateImageFormatsOnDisk(image_info,reference_filename,
output_filename,&fail,exception);
- (void) FormatLocaleFile(stdout,"[pixel-cache: disk] ");
- map_resource=SetMagickResourceLimit(MapResource,0);
+ (void) SetMagickResourceLimit(MemoryResource,memory_resource);
+ }
+ if ((type & FormatsMemoryValidate) != 0)
+ {
+ (void) FormatLocaleFile(stdout,"[pixel-cache: memory] ");
+ tests+=ValidateImageFormatsInMemory(image_info,reference_filename,
+ output_filename,&fail,exception);
+ (void) FormatLocaleFile(stdout,"[pixel-cache: memory] ");
tests+=ValidateImageFormatsOnDisk(image_info,reference_filename,
output_filename,&fail,exception);
- (void) SetMagickResourceLimit(MemoryResource,memory_resource);
- (void) SetMagickResourceLimit(MapResource,map_resource);
}
if ((type & IdentifyValidate) != 0)
tests+=ValidateIdentifyCommand(image_info,reference_filename,