The Trunk: GraphicsTests-pre.49.mcz

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

The Trunk: GraphicsTests-pre.49.mcz

commits-2
Patrick Rein uploaded a new version of GraphicsTests to project The Trunk:
http://source.squeak.org/trunk/GraphicsTests-pre.49.mcz

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

Name: GraphicsTests-pre.49
Author: pre
Time: 16 October 2018, 5:03:04.269369 pm
UUID: 50c6b4da-e66d-714b-8611-cd2c9c4d59ed
Ancestors: GraphicsTests-pre.48

This partially reverts the previous commit as the current 32 bit pixel value behavior is integral to the graphics package. However, as the behavior is inconsistent with the general color model I would like to keep the test around as an expected failure and a reminder to tackle this consistently for 32 bit at one point.

=============== Diff against GraphicsTests-pre.48 ===============

Item was added:
+ ----- Method: ColorTest>>expectedFailures (in category 'failures') -----
+ expectedFailures
+
+ ^ #(testColorsFromPixelValue32BitBlack)!

Item was changed:
  ----- Method: ColorTest>>testColorsFromPixelValue32BitBlack (in category 'tests') -----
  testColorsFromPixelValue32BitBlack
 
+ "This is a test which tests for the particular behavior of
- "This is a regression test which tests for deprecated behavior of
  colorFromPixelValue:depth: which set 32bit rgb black to transparent."
  self assert: Color black equals: (Color colorFromPixelValue: 16rFF000000 depth: 32)!