The Trunk: GraphicsTests-ar.29.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: GraphicsTests-ar.29.mcz

commits-2
Andreas Raab uploaded a new version of GraphicsTests to project The Trunk:
http://source.squeak.org/trunk/GraphicsTests-ar.29.mcz

==================== Summary ====================

Name: GraphicsTests-ar.29
Author: ar
Time: 7 January 2011, 5:21:12.214 pm
UUID: 007912bb-9bd5-e54a-baf4-4d74d5d886e3
Ancestors: GraphicsTests-ar.28

Add test documenting a problem with PNGReadWriter.

=============== Diff against GraphicsTests-ar.28 ===============

Item was added:
+ ----- Method: PNGReadWriterTest>>grayScaleData (in category 'tests - grayscale') -----
(excessive size, no diff calculated)

Item was added:
+ ----- Method: PNGReadWriterTest>>testGrayScale (in category 'tests - grayscale') -----
+ testGrayScale
+
+ | form reader |
+ reader := PNGReadWriter on: self grayScaleData readStream.
+ form := reader nextImage.
+ self assert: form extent = (217@125).
+ self assert: form depth = 8.
+ !


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: GraphicsTests-ar.29.mcz

Andreas.Raab
On 1/7/2011 4:21 PM, [hidden email] wrote:
> =============== Diff against GraphicsTests-ar.28 ===============
>
> Item was added:
> + ----- Method: PNGReadWriterTest>>grayScaleData (in category 'tests - grayscale') -----
> (excessive size, no diff calculated)

Sweet. I didn't know we had that now :-)

Cheers,
   - Andreas

Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: GraphicsTests-ar.29.mcz

Bert Freudenberg
Andreas Raab wrote:

> On 1/7/2011 4:21 PM, [hidden email] wrote:
>> =============== Diff against GraphicsTests-ar.28 ===============
>>
>> Item was added:
>> + ----- Method: PNGReadWriterTest>>grayScaleData (in category 'tests -
>> grayscale') -----
>> (excessive size, no diff calculated)
>
> Sweet. I didn't know we had that now :-)
>
> Cheers,
> - Andreas

Ah, so it's working. I changed the diff code a couple of months ago but
was waiting on an "excessive" change to verify it works as intended ...
apparently it does :)

- Bert -