From: cristy Date: Sat, 17 Nov 2012 21:10:20 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~4701 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f044a4d421741ac56005ed3a37eb537de94423aa;p=imagemagick --- diff --git a/tests/validate.c b/tests/validate.c index 69c0b1f0f..b994cb95f 100644 --- a/tests/validate.c +++ b/tests/validate.c @@ -1480,8 +1480,19 @@ int main(int argc,char **argv) tests+=ValidateConvertCommand(image_info,reference_filename, output_filename,&fail,exception); if ((type & FormatsInMemoryValidate) != 0) - tests+=ValidateImageFormatsInMemory(image_info,reference_filename, - output_filename,&fail,exception); + { + (void) FormatLocaleFile(stdout,"[pixel-cache: memory] "); + tests+=ValidateImageFormatsInMemory(image_info,reference_filename, + output_filename,&fail,exception); + (void) FormatLocaleFile(stdout,"[pixel-cache: memory-mapped] "); + (void) SetMagickResourceLimit(MemoryResource,0); + tests+=ValidateImageFormatsInMemory(image_info,reference_filename, + output_filename,&fail,exception); + (void) FormatLocaleFile(stdout,"[pixel-cache: disk] "); + (void) SetMagickResourceLimit(MapResource,0); + tests+=ValidateImageFormatsInMemory(image_info,reference_filename, + output_filename,&fail,exception); + } if ((type & FormatsOnDiskValidate) != 0) { (void) FormatLocaleFile(stdout,"[pixel-cache: memory] ");