ChangeLog 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. 2002-05-20 Thien-Thi Nguyen <ttn@giblet.glug.org>
  2. * README: Sync w/ HEAD (1.5).
  3. 2002-05-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
  4. * lib.scm, tests/r4rs.test, guile-test: Update copyright.
  5. 2002-02-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
  6. * lib.scm: Back port from 1.20, with these exceptions:
  7. do not remove `signals-error?' and `signals-error?*', and do not
  8. include (ice-9 stack-catch), which is not available yet.
  9. * tests/r4rs.test: Use `test-file-name' and `data-file-name'
  10. instead of `data-file'.
  11. * guile-test: Back port from 1.12, with the following exception:
  12. do not use modules (ice-9 and-let-star) or (ice-9 rdelim).
  13. * paths.scm: bye bye.
  14. 2000-06-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
  15. * tests/list.test: Use cons* instead of list*.
  16. 2000-06-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  17. * tests/numbers.test, tests/list.test: Updated for new
  18. documentation module.
  19. 2000-05-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
  20. * tests/hooks.test: make-hook-with-name is deprecated.
  21. 2000-05-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
  22. * tests/list.test, tests/numbers.test: Added.
  23. 2000-05-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
  24. * guile-test: Eliminate use of catch-test-errors.
  25. * lib.scm: Adopted a couple of nice ideas from Greg.
  26. (pass, fail, expect-failure, expect-failure-if,
  27. expect-failure-if*, catch-test-errors, catch-test-errors*,
  28. expected-failure-fluid, pessimist?): Removed.
  29. (run-test, expect-fail, result-tags, important-result-tags):
  30. Added.
  31. (report, make-count-reporter, print-counts, make-log-reporter,
  32. full-reporter, user-reporter): Reporters take two mandatory
  33. arguments and make use of the tag descriptions in result-tags and
  34. important-result-tags.
  35. * tests/alist.test, tests/hooks.test, tests/ports.test,
  36. tests/weaks.test: Don't use catch-test-errors and
  37. expect-failure-if.
  38. 2000-05-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
  39. * mambo.test: Removed dummy file.
  40. 2000-03-31 Gary Houston <ghouston@arglist.com>
  41. * tests/ports.test (non-blocking-I/O): a couple more details:
  42. a) combine the O_NONBLOCK flag with the default flags instead
  43. of replacing them. b) check EWOULDBLOCK as well as EAGAIN.
  44. 2000-03-22 Jim Blandy <jimb@savonarola.red-bean.com>
  45. * lib.scm: Doc fixes.
  46. Sun Jan 16 14:01:51 2000 Greg J. Badros <gjb@cs.washington.edu>
  47. * paths.scm: Assume that ~/guile-core/test-suite is the location
  48. of the test suite now.
  49. * tests/version.test: Added -- version.c had 0% coverage before,
  50. now at 100%.
  51. * tests/chars.test: Added -- needed test of char-is-both?.
  52. 1999-12-22 Greg Harvey <Greg.Harvey@thezone.net>
  53. * tests/weaks.test, tests/hooks.test: Added.
  54. 1999-12-18 Greg Harvey <Greg.Harvey@thezone.net>
  55. * tests/alist.test: Added.
  56. Fri Dec 17 12:14:10 1999 Greg J. Badros <gjb@cs.washington.edu>
  57. * tests/c-api.test: Refine the list of files that are checked in
  58. the seek-offset-test. Was just using files that end in "c", but
  59. that caught the new ".doc" files, too, so make sure that files end
  60. in ".c" before requiring that they include unistd.h if they
  61. reference SEEK_(SET|CUR|END).
  62. 1999-10-24 Gary Houston <ghouston@freewire.co.uk>
  63. * tests/ports.test ("string ports"): test seeking/unreading from
  64. an input string and seeking an output string.
  65. 1999-10-20 Gary Houston <ghouston@freewire.co.uk>
  66. * tests/ports.test: in seek/tell test on input port, also test
  67. that ftell doesn't discard unread chars.
  68. 1999-10-18 Gary Houston <ghouston@freewire.co.uk>
  69. * tests/ports.test: add seek/tell tests for unidirectional ports.
  70. 1999-09-25 Jim Blandy <jimb@savonarola.red-bean.com>
  71. * tests/reader.test: Check that number->string checks its radix
  72. properly.
  73. 1999-09-20 Jim Blandy <jimb@savonarola.red-bean.com>
  74. * tests/ports.test: Check that our input functions cope when
  75. current-input-port is closed.
  76. * tests/regexp.test: Check regexp-substitute/global when there are
  77. no matches. (Duh.)
  78. 1999-09-15 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  79. * tests/c-api.test: New file. Add test to check that all source
  80. files which use SEEK_SET, SEEK_CUR, and SEEK_END include unistd.h.
  81. 1999-09-14 Gary Houston <ghouston@freewire.co.uk>
  82. * tests/ports.test: test non-blocking I/O.
  83. 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
  84. * tests/strings.test: Add test for substring-move! argument checking.
  85. * lib.scm (signals-error?, signals-error?*): New macro and function.
  86. * tests/reader.test: Use them.
  87. * tests/interp.test: Add copyright notice.
  88. * tests/reader.test: New test file.
  89. * tests/regexp.test: New test file.
  90. 1999-09-06 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
  91. * tests/interp.test: Added tests for evaluation of closure bodies.
  92. 1999-09-03 James Blandy <jimb@mule.m17n.org>
  93. * tests/multilingual.nottest: New file, which we will turn into a
  94. test file once we actually have multilingual support to test.
  95. * tests/load.test: New test file.
  96. 1999-08-30 James Blandy <jimb@mule.m17n.org>
  97. * tests/strings.test: New test file.
  98. 1999-08-29 Gary Houston <ghouston@easynet.co.uk>
  99. * tests/ports.test: test unread-char and unread-string.
  100. 1999-08-19 Gary Houston <ghouston@easynet.co.uk>
  101. * tests/ports.test: test line-buffering of fports.
  102. 1999-08-18 Gary Houston <ghouston@easynet.co.uk>
  103. * tests/ports.test: tests for NUL and non-ASCII chars to fports.
  104. 1999-08-12 Gary Houston <ghouston@easynet.co.uk>
  105. * tests/ports.test: lseek -> seek.
  106. 1999-08-04 Gary Houston <ghouston@easynet.co.uk>
  107. * tests/ports.test: tests for buffered and unbuffered input/output
  108. fports with seeking.
  109. 1999-08-01 Jim Blandy <jimb@savonarola.red-bean.com>
  110. * tests/r4rs.test (SECTION 3 4): Each element of type-matrix
  111. corresponds to an example object, not a predicate. Aubrey
  112. probably never noticed this because SCM doesn't check the lengths
  113. of the arguments to for-each and map...
  114. * tests/ports.test: Add some regression tests for char-ready?.
  115. 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
  116. * tests/ports.test: Fix copyright years.
  117. * tests/guardians.test: New test file.
  118. * tests/ports.test ("read-delimited!"): New tests.
  119. 1999-06-19 Jim Blandy <jimb@savonarola.red-bean.com>
  120. * tests/interp.test: New file.
  121. 1999-06-15 Jim Blandy <jimb@savonarola.red-bean.com>
  122. * tests/time.test: New test file.
  123. * tests/r4rs.test: New set of tests, taken from Guile's test
  124. script, taken from SCM.
  125. * tests/ports.test: Group the string port tests under a new
  126. test name prefix.
  127. * tests/ports.test ("line counter"): Check the final column, too.
  128. * lib.scm: Import (test-suite paths).
  129. (data-file): New exported function.
  130. 1999-06-12 Jim Blandy <jimb@savonarola.red-bean.com>
  131. * tests/ports.test ("line counter"): Add test for correct column
  132. at EOF.
  133. 1999-06-09 Jim Blandy <jimb@savonarola.red-bean.com>
  134. * tests/ports.test ("line counter"): Verify that we do eventually
  135. get EOF on the port --- don't just read forever.
  136. * lib.scm (full-reporter): The test name is the cadr of the
  137. result, not the cdr. I'm not macho enough to handle run-time
  138. typechecking.
  139. * lib.scm (print-counts): XFAILS are "expected failures", not
  140. "unexpected failures."
  141. * lib.scm, guile-test, paths.scm: Log begins.