ChangeLog 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. 2005-07-08 Raja R Harinath <[email protected]>
  2. * RegexTest.cs (Matches1, Matches2, ..., Matches10): Combine into ...
  3. (Matches): ... this. Convert to use a data-driven approach. Use ...
  4. (trials): ... this. New variable that lists the regexp, input
  5. text and expected results.
  6. (runTrial): New. Run a suite of MatchCollection tests on each trial.
  7. Tests both incremental and non-incremental modes.
  8. 2005-06-14 Raja R Harinath <[email protected]>
  9. * RegexBugs.cs (NameLookupInEmptyMatch): New test from #74753.
  10. 2005-05-25 Raja R Harinath <[email protected]>
  11. * RegexReplace.cs: Add a couple more testcases.
  12. 2005-05-24 Raja R Harinath <[email protected]>
  13. * RegexReplace.cs: Add testcase for $+.
  14. 2005-05-20 Raja R Harinath <[email protected]>
  15. * RegexReplace.cs: New file. Most of the tests were inspired by
  16. #74735.
  17. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  18. * PerlTest.cs: split.
  19. 2005-02-27 Gonzalo Paniagua Javier <[email protected]>
  20. * RegexBugs.cs: tests for bug #69193.
  21. 2005-01-10 Gonzalo Paniagua Javier <[email protected]>
  22. * RegexBugs.cs: tests for bug #69065.
  23. 2005-01-08 Miguel de Icaza <[email protected]>
  24. * RegexBugs.cs: Add new test.
  25. 2005-01-08 Nick Drochak <[email protected]>
  26. * RegexTest.cs: Make pass on MS.NET
  27. 2004-11-29 Gonzalo Paniagua Javier <[email protected]>
  28. * System.Text.RegularExpressions/RegexBugs.cs: test case for bug #57274.
  29. 2004-10-18 Gonzalo Paniagua Javier <[email protected]>
  30. * System.Text.RegularExpressions/RegexBugs.cs: added test for bug
  31. #68398.
  32. 2004-07-05 Jackson Harper <[email protected]>
  33. * RegexTest.cs: Add some simple tests for debugging/zen building.
  34. 2004-06-06 Jambunathan K <[email protected]>
  35. * RegexTest.cs:
  36. * RegexBugs.cs: Added test case for exercising Regex.Unescape()
  37. Added test cases for exercising \b as a word boundary operator
  38. and as a character class in a regex. Refer bug #58256 for more
  39. information.
  40. 2004-06-01 Gonzalo Paniagua Javier <[email protected]>
  41. * RegexBugs.cs: added CategoryAndNegated test.
  42. 2004-05-27 Gonzalo Paniagua Javier <[email protected]>
  43. * RegexBugs.cs: added tests from bug #59150.
  44. 2004-04-19 Gonzalo Paniagua Javier <[email protected]>
  45. * Test/System.Text.RegularExpressions/PerlTrials.cs:
  46. Patch by Eric Durand Tremblay with tests.
  47. 1) Capture inner group when named.
  48. 2) Resolved parse error caused by not capturing inner group
  49. 3) Resolved incorrect capture group
  50. 4) Now, not capturing anything when unnamed ( correct behavior)
  51. 2004-04-19 Gonzalo Paniagua Javier <[email protected]>
  52. * PerlTrials.cs: unix line endings.
  53. 2004-03-30 Lluis Sanchez Gual <[email protected]>
  54. * RegexBugs.cs: Added test for bug #52890.
  55. 2004-03-24 Gonzalo Paniagua Javier <[email protected]>
  56. * RegexBugs.cs: added new test with a regex used when discovering the
  57. wsdl document for a asmx page.
  58. 2004-03-22 Jackson Harper <[email protected]>
  59. * RegexBugs.cs: Add test case for multiple matches.
  60. 2004-03-17 Francois Beauchemin <[email protected]>
  61. * PerlTrials.cs : Added many test for RightToLeft
  62. * PerlTest.cs, RegexTrial : Modified version of regextrial to
  63. be run all the test and to report exception.
  64. 2004-03-16 Gonzalo Paniagua Javier <[email protected]>
  65. * RegexBugs.cs: added test case for bug 54797.
  66. 2004-02-02 Nick Drochak <[email protected]>
  67. * RegexBugs.cs (RangeIgnoreCase): made the last assert pass on .NET.
  68. 2004-01-16 Gonzalo Paniagua Javier <[email protected]>
  69. * RegexBugs.cs: added test from bug #52924.
  70. 2004-01-07 Lluis Sanchez Gual <[email protected]>
  71. * RegexBugs.cs: Improved test. In Split(), if the last match is at the
  72. end of the string, an empty string must be added to the array of
  73. results.
  74. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  75. * RegexBugs.cs: added tests from bug #42529.