From f044a4d421741ac56005ed3a37eb537de94423aa Mon Sep 17 00:00:00 2001 From: cristy Date: Sat, 17 Nov 2012 21:10:20 +0000 Subject: [PATCH] --- tests/validate.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) 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] "); -- 2.40.0