ChangeLog 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. 2007-04-26 Sebastien Pouliot <[email protected]>
  2. * MetafileTest.cs: Add test cases for more .ctors
  3. 2007-04-16 Sebastien Pouliot <[email protected]>
  4. * GifCodecTest.cs: Fix typo and add Stride check.
  5. * IconCodecTest.cs: Fix typo.
  6. * PngCodecTest.cs: Fix typo and add Stride check.
  7. * TiffCodecTest.cs: Fix typo.
  8. 2007-04-12 Sebastien Pouliot <[email protected]>
  9. * TestBmpCodec.cs: Reenable some NotWorking test case.
  10. * TestJpegCodec.cs: Reenable some NotWorking test case.
  11. * TiffCodecTest.cs: Reenable some NotWorking test case.
  12. 2007-04-11 Sebastien Pouliot <[email protected]>
  13. * GifCodecTest.cs: Reenable some NotWorking test cases.
  14. * IconCodecTest.cs: Reenable some NotWorking test cases.
  15. * PngCodecTest.cs: Reenable some NotWorking test cases.
  16. 2007-04-10 Sebastien Pouliot <[email protected]>
  17. * GifCodecTest.cs: Fix Save* test cases to check 8bpp indexed for all
  18. GIF saved. Added comments to why we're not getting the "right" Red.
  19. * TestBmpCodec.cs: Remove "NotWorking" from Bitmap32bitPixels test
  20. case. The file is a 32bpp RGB (no alpha).
  21. 2007-03-28 Sebastien Pouliot <[email protected]>
  22. * TiffCodecTest.cs: Ignore both SPARC bots by using the HostIgnoreList
  23. mechanism.
  24. 2007-03-15 Sebastien Pouliot <[email protected]>
  25. * EmfPlusRecordTypeTest.cs: New. Unit tests.
  26. * TestColorMatrix.cs: Added some test case and reworked existing to
  27. fix expected/actual results and add test descriptions (which should
  28. help find where the endian issue is hiding).
  29. 2007-03-14 Sebastien Pouliot <[email protected]>
  30. * GifCodecTest.cs: Add test cases for a GIF87a image - which is the
  31. format that GDI+ save GIF files (even if the original was a GIF89a).
  32. 2007-03-09 Sebastien Pouliot <[email protected]>
  33. * MetafileTest.cs: New. Metafile unit tests.
  34. 2007-02-16 Sebastien Pouliot <[email protected]>
  35. * TestImageCodecInfo.cs: Add missing test case for TIFF codec;
  36. 2007-02-08 Sebastien Pouliot <[email protected]>
  37. * TestBmpCodec.cs: Add test case for non-inverted bitmaps #80751
  38. 2007-01-15 Sebastien Pouliot <[email protected]>
  39. * IconCodecTest.cs: New test case to check 32bpp (XP) icons.
  40. 2007-01-11 Sebastien Pouliot <[email protected]>
  41. * IconCodecTest.cs: New test case to check loading from an Icon then
  42. create a Bitmap from the Image. Some properties are changed in the
  43. process (e.g. palette, flags).
  44. 2007-01-10 Sebastien Pouliot <[email protected]>
  45. * IconCodecTest.cs: Add test cases for 48x48, 64x64 and 96x96 icons.
  46. Fix test cases for 16x16 and 32x32 icons. Add test cases for 256
  47. colors and monochrome icons. Remove NotWorking from most tests.
  48. 2007-01-08 Sebastien Pouliot <[email protected]>
  49. * IconCodecTest.cs: Remove [Ignore] and replace with NotWorking.
  50. * TestImageCodecInfo.cs: Add test for new encoders/decoders and
  51. signature masks and patterns.
  52. 2006-12-21 Sebastien Pouliot <[email protected]>
  53. * TestImageAttributes.cs: Added test cases for #80323 for ColorMatrix
  54. using alpha values (with or without an original alpha-based color).
  55. 2006-10-31 Sebastien Pouliot <[email protected]>
  56. * MetaHeaderTest.cs: New. Unit tests for MetaHeader.
  57. * WmfPlaceableFileHeaderTest.cs: New. Unit tests for
  58. WmfPlaceableFileHeader.
  59. 2006-09-18 Boris Kirzner <[email protected]>
  60. * TestBmpCodec.cs,TestColorMatrix.cs,TestJpegCodec.cs : mark tests
  61. not working in TARGET_JVM.
  62. 2006-09-16 Sebastien Pouliot <[email protected]>
  63. * GifCodecTest.cs: Change filename for Save to ease debugging.
  64. * IconCodecTest.cs: Change filename for Save to ease debugging.
  65. * PngCodecTest.cs: Change filename for Save to ease debugging. Change
  66. color from Red to BlueViolet for lossless formats.
  67. * TestBmpCodec.cs: Change filename for Save to ease debugging. Change
  68. color from Red to BlueViolet for lossless formats.
  69. * TestJpegCodec.cs: Change filename for Save to ease debugging.
  70. * TiffCodecTest.cs: Change filename for Save to ease debugging. Change
  71. color from Red to BlueViolet for lossless formats.
  72. 2006-09-15 Sebastien Pouliot <[email protected]>
  73. * GifCodecTest.cs, IconCodecTest.cs, PngCodecTest.cs, TestBmpCodec.cs,
  74. TestJpegCodec.cs, TiffCodecTest.cs: Refactor Save test case to check
  75. convertions between pixel formats.
  76. 2006-09-12 Boris Kirzner <[email protected]>
  77. * TestBmpCodec.cs, TestJpegCodec.cs: ifdef unsafe code
  78. for TARGET_JVM.
  79. 2006-09-01 Sebastien Pouliot <[email protected]>
  80. * GifCodecTest.cs: New. Unit tests for GIF codec.
  81. * IconCodecTest.cs: New. Unit tests for ICON codec (not working).
  82. * PngCodecTest.cs: New. Unit tests for PNG codec.
  83. * TiffCodecTest.cs: New. Unit tests for TIFF codec.
  84. 2006-08-31 Sebastien Pouliot <[email protected]>
  85. * TestBmpCodec.cs: Add more test cases for 1, 8 and 32 bbp bitmaps
  86. including checks for Pixels and BitmapData.
  87. * TestImageCodecInfo.cs: Fix namespace and class name.
  88. * TestJpegCodec.cs: Reactivate the tests (not sure why they were
  89. commented). Added test cases for Pixel and BitmapData (NotWorking).
  90. 2006-08-25 Sebastien Pouliot <[email protected]>
  91. * TestBmpCodec.cs: Add pixel value tests to a well known bitmap.
  92. 2006-08-24 Sebastien Pouliot <[email protected]>
  93. * TestColorMatrix.cs: Add test cases for error handling inside ctor and
  94. for testing each field with a different value.
  95. 2006-07-19 Sebastien Pouliot <[email protected]>
  96. * TestImageFormat.cs: Added test cases for well known image format
  97. (which returns a human readable name when the ImageFormat comes from
  98. the static properties).
  99. 2006-06-30 Sebastien Pouliot <[email protected]>
  100. * TestImageAttribute.cs: Fix namespace and split test for easier
  101. search of a memory leak.
  102. 2006-05-29 Sebastien Pouliot <[email protected]>
  103. * TestImageFormat.cs: Added test cases for Equals and GetHashCode.
  104. 2006-05-24 Sebastien Pouliot <[email protected]>
  105. * TestImageFormat.cs: Update ToString expected outputs to match MS.
  106. 2006-05-17 Gonzalo Paniagua Javier <[email protected]>
  107. * TestBmpCodec.cs: Bitmap24bitFeatures works now.
  108. 2006-04-25 Peter Dennis Bartok <[email protected]>
  109. * TestBmpCodec.cs: Marked the 24bit test as not working until
  110. bug #78189 is fixed.
  111. 2006-01-25 Boris Kirzner <[email protected]>
  112. *TestBmpCodec.cs, TestImageAttributes.cs, TestImageCodecInfo.cs:
  113. added #ifdef for TARGET_JVM.
  114. 2005-11-13 Kornél Pál <[email protected]>
  115. * TestImageFormat.cs: Added ToStringTest.
  116. 2005-10-31 Jordi Mas i Hernandez <[email protected]>
  117. * TestImageFormat.cs: New test unit
  118. 2005-09-16 Sebastien Pouliot <[email protected]>
  119. * TestBmpCodec.cs, TestColorMatrix.cs, TestImageAttributes.cs,
  120. TestImageCodecInfo.cs, TestJpegCodec.cs: Deny UnmanagedCode permission
  121. to all tests. This shows (when executed under MS runtime) that S.D API
  122. is safe and doesn't requires high privileges to run - even if we know
  123. that, deep down, this calls into GDI+.
  124. 2005-08-19 Jordi Mas i Hernandez <[email protected]>
  125. * TestBmpCodec.cs: Enable PixelFormat tests
  126. 2005-08-16 Andrew Skiba <[email protected]>
  127. * TestImageCodecInfo.cs: use regular expressions for results that may vary
  128. while still in correct format, so same tests can be used for jvm
  129. 2005-08-09 Andrew Skiba <[email protected]>
  130. * TestImageCodecInfo.cs: FormatID, CodecName, DllName, FilenameExtension,
  131. Flags, FormatDescription, MimeType properties checked
  132. 2005-08-09 Andrew Skiba <[email protected]>
  133. * TestImageCodecInfo.cs: refactor to make possible to add tests for all
  134. properties, not only FormatID.
  135. 2004-03-22 Jordi Mas i Hernandez <[email protected]>
  136. * TestColorMatrix.cs: added test case
  137. * TestImageAttributes.cs: added test case
  138. 2004-06-10 Sanjay Gupta <[email protected]>
  139. * TestBmpCodec.cs, TestImageCodecInfo.cs, TestJpedCodec.cs: Removed
  140. dependency on obsolete class, Assertion from NUnit.
  141. 2004-03-17 Ravindra <[email protected]>
  142. * Created this repository for System.Drawing.Imaging tests.
  143. * ChangeLog: Added.