*** empty log message ***
[bpt/guile.git] / test-suite / ChangeLog
1 2005-02-11 Kevin Ryde <user42@zip.com.au>
2
3 * tests/fractions.test (ash): Remove tests of ash on fractions, not
4 supported after scm_ash rewrite.
5
6 2005-02-04 Kevin Ryde <user42@zip.com.au>
7
8 * tests/srfi-1.test (list=): New tests.
9
10 2005-01-29 Kevin Ryde <user42@zip.com.au>
11
12 * tests/numbers.test (ash): New tests.
13
14 * tests/srfi-1.test (lset-adjoin, remove, remove!): New tests.
15
16 2005-01-28 Kevin Ryde <user42@zip.com.au>
17
18 * tests/syntax.test (while): Tests running in empty environment are
19 now "unresolved" due to workaround in while implementation.
20
21 2005-01-24 Kevin Ryde <user42@zip.com.au>
22
23 * standalone/test-unwind.c (check_cont): Cast rewindable to long, to
24 avoid warning from gcc 3.4 on 64-bit systems about casting int
25 (32-bits) to pointer (64-bits).
26
27 * tests/srfi-1.test (lset=, member): New tests.
28
29 2005-01-12 Kevin Ryde <user42@zip.com.au>
30
31 * tests/srfi-39.test (current-input-port, current-output-port,
32 current-error-port): New tests.
33
34 2005-01-10 Marius Vollmer <mvo@zagadka.de>
35
36 * tests/unif.test (exception:wrong-num-indices): New, use it for
37 array-set! tests with wrong number of indices.
38
39 2005-01-07 Marius Vollmer <mvo@zagadka.de>
40
41 * tests/srfi-4.test: Use (test-suite lib) module.
42
43 2005-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
44
45 * tests/unif.test (have-llvect?): Removed, Scheme code will always
46 have u64 and s64 uniform vectors.
47
48 2005-01-05 Marius Vollmer <mvo@zagadka.de>
49
50 * tests/unif.test: Use *unspecified* instead of #f to get an
51 uninitialized array.
52
53 2005-01-04 Kevin Ryde <user42@zip.com.au>
54
55 * tests/ramap.test: New file, test array-map!.
56 * Makefile.am (SCM_TESTS): Add it.
57
58 2005-01-02 Marius Vollmer <mvo@zagadka.de>
59
60 * tests/unif.test: Rewritten for new 'typed' approach to uniform
61 arrays.
62
63 * tests/sort.test: New tests, especially for sorting non-contigous
64 and negative-incrementing vectors.
65
66 2005-01-02 Kevin Ryde <user42@zip.com.au>
67
68 * tests/srfi-39.test: Use define-module to keep bindings from
69 subsequent tests, use test-suite lib for stand-alone checking.
70
71 * Makefile.am (SCM_TESTS): Add srfi-39.test.
72
73 2004-12-27 Neil Jerram <neil@ossau.uklinux.net>
74
75 * tests/continuations.test (continuations): Moved continuation /
76 stack tests here, and added save and restore of debug options.
77
78 2004-12-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
79
80 * tests/eval.test: News tests for making stacks from
81 continuations. From Neil Jerram.
82
83 2004-12-10 Kevin Ryde <user42@zip.com.au>
84
85 * tests/socket.test (inet-pton): New tests.
86
87 2004-12-06 Kevin Ryde <user42@zip.com.au>
88
89 * tests/srfi-1.test (alist-copy, alist-delete, break, span): New
90 tests.
91
92 2004-12-05 Kevin Ryde <user42@zip.com.au>
93
94 * tests/srfi-1.test (append-map, filter-map): New tests.
95
96 2004-11-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
97
98 * tests/unif.test: Replaced uniform-array-set1! with just
99 array-set!. Do not check improper index lists, which can't arise
100 with uarray-set!. Use "#s16()" instead of "#h()".
101
102 2004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
103
104 * tests/unif.test: Removed tests that tried to store a character
105 into a byte vector, which no longer works. Characters are not
106 bytes.
107
108 2004-10-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
109
110 * tests/syntax.test: Added tests for unmemoization.
111
112 2004-09-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
113
114 * tests/strings.test (string-set!): Explicitely construct
115 read-only string. String literals are not yet read-only.
116
117 2004-09-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
118
119 * tests/unif.test (array-equal?): New test.
120
121 2004-09-29 Kevin Ryde <user42@zip.com.au>
122
123 * tests/regexp.test (match:string): New tests.
124
125 2004-09-26 Kevin Ryde <user42@zip.com.au>
126
127 * tests/optargs.test (let-keywords, let-keywords*, let-optional,
128 let-optional*): Add tests of internal defines when no bindings.
129
130 2004-09-25 Marius Vollmer <mvo@zagadka.de>
131
132 * standalone/Makefile.am (AM_LDFLAGS, LD_FLAGS): Use AM_LDFLAGS
133 instead of LDFLAGS; the latter is a user variable.
134
135 2004-09-24 Marius Vollmer <mvo@zagadka.de>
136
137 * standalone/Makefile.am (test_cflags, LDFLAGS): Include
138 GUILE_CFLAGS.
139
140 2004-09-23 Marius Vollmer <mvo@zagadka.de>
141
142 * lib.scm (exception:out-of-range, exception:wrong-type-arg):
143 Accept new wording.
144
145 2004-09-22 Marius Vollmer <mvo@zagadka.de>
146
147 * tests/ports.test ("string ports"): Copy string literal so that
148 it can be modified.
149 * tests/srfi-13.test ("string-copy!"): Likewise.
150 * tests/strings.test ("substring/shared"): Likewise.
151
152 2004-09-09 Kevin Ryde <user42@zip.com.au>
153
154 * tests/streams.test: New file.
155
156 2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
157
158 * tests/fractions.test: Don't expect (expt 1/2 2.0) to yield an
159 exact result, use (expt 1/2 2) instead.
160
161 2004-09-08 Kevin Ryde <user42@zip.com.au>
162
163 * tests/ports.test (port-column): Further tests, of new \a \b \r.
164
165 2004-09-07 Kevin Ryde <user42@zip.com.au>
166
167 * tests/numbers.test (integer-expt): New tests, of infinite exponents.
168 (integer?): Exercise nan and +/-inf.
169
170 * tests/time.test (gmtime, strptime): New tests, but unresolved.
171 (internal-time-units-per-second): New test.
172
173 2004-09-02 Kevin Ryde <user42@zip.com.au>
174
175 * tests/format.test (~@d): New tests.
176 New tests of excess arguments now ignored.
177
178 2004-09-01 Han-Wen Nienhuys <hanwen@cs.uu.nl>, Kevin Ryde <user42@zip.com.au>
179
180 * tests/gc.test: Exercise record in weak-values hash table, exposing a
181 problem in 1.6.4 gc, but believed fixed by other changes in the head.
182
183 2004-08-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
184
185 * tests/srfi-13.test (module-peek): Removed, this kluge is no
186 longer necessary.
187
188 2004-08-27 Kevin Ryde <user42@zip.com.au>
189
190 * tests/regexp.test (regexp-quote): New tests.
191
192 * tests/srfi-31.test: Use define-module to keep bindings out of
193 further tests. Use-module (test-suite lib) for stand-alone operation.
194 (rec): Exercise bad args.
195
196 2004-08-25 Kevin Ryde <user42@zip.com.au>
197
198 * tests/and-let-star.test: More tests, in particular exercise #t
199 result on empty body.
200
201 2004-08-25 Marius Vollmer <mvo@zagadka.de>
202
203 * tests/strings.test: Two more tests for double indirect substring
204 modification.
205
206 2004-08-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
207
208 * lib.scm (exception:used-before-define): New.
209 * tests/syntax.test ("letrec"): Use it.
210
211 2004-08-20 Kevin Ryde <user42@zip.com.au>
212
213 * tests/posix.test (mkstemp!): New tests.
214
215 2004-08-20 Marius Vollmer <mvo@zagadka.de>
216
217 * tests/strings.test: Two tests for substring/shared. Also, use
218 (test-suite lib).
219
220 2004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
221
222 * standalone/test-conversion.c, standalone/test-gh.c,
223 standalone/test-unwind.c: Avoid the use of discouraged or
224 deprecated things.
225
226 2004-08-18 Kevin Ryde <user42@zip.com.au>
227
228 * tests/and-let-star.test, tests/arbiters.test, tests/receive.test:
229 New files.
230 * Makefile.am (SCM_TESTS): Add them.
231
232 * tests/fractions.test (fractions): Correction, equal? 3/4 .75 should
233 be #f, according to R5RS.
234
235 2004-08-15 Marius Vollmer <mvo@zagadka.de>
236
237 * tests/srfi-39.test: New, from Jose A Ortega Ruiz. Thanks!
238
239 2004-08-14 Kevin Ryde <user42@zip.com.au>
240
241 * tests/srfi-13.test (string-any, string-every): Exercise char and
242 charset predicate cases.
243
244 2004-08-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
245
246 * standalone/test-conversion.c (test_locale_strings): New.
247
248 * standalone/test-round.c: Replaced all uses of scm_round with
249 scm_c_round.
250
251 2004-08-09 Kevin Ryde <user42@zip.com.au>
252
253 * tests/slib.test: New file.
254 * Makefile.am (SCM_TESTS): Add it.
255
256 2004-08-06 Kevin Ryde <user42@zip.com.au>
257
258 * tests/unif.test (array-set!): Exercise byte array range checks.
259 (uniform-vector-ref): Exercise byte returns.
260 (array-fill!): Exercise byte range and type checks.
261
262 2004-08-03 Marius Vollmer <marius.vollmer@uni-dortmund.de>
263
264 * standalone/test-num2integral.c: Only perform the tests when the
265 disabled features are enabled.
266
267 * standalone/test-conversion.c (test_to_double, test_from_double):
268 New tests.
269
270 2004-08-02 Kevin Ryde <user42@zip.com.au>
271
272 * tests/srfi-13.test (string-every): Check empty string case.
273
274 2004-07-31 Kevin Ryde <user42@zip.com.au>
275
276 * tests/filesys.test: New file, exercising copy-file.
277 * Makefile.am (SCM_TESTS): Add it.
278
279 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
280
281 * standalone/test-conversion.c: Many more tests for the integer
282 conversion functions.
283
284 2004-07-28 Kevin Ryde <user42@zip.com.au>
285
286 * tests/regexp.test (make-regexp): Exercise flags args validation.
287
288 * tests/unif.test (array-set!): Exercise svect value range check.
289
290 2004-07-24 Kevin Ryde <user42@zip.com.au>
291
292 * tests/common-list.test: Use define-module, to as not to import
293 common-list into subsequent tests (eg. srfi-1 where `every' provokes a
294 warning).
295
296 * tests/srfi-19.test, tests/srfi-34.test: Use #:duplicates (last) to
297 suppress warnings about current-time and raise replacing core bindings.
298
299 2004-05-25 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
300
301 * tests/format.test (~{): Test no arbitrary iteration limit.
302
303 2004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
304
305 * standalone/test-conversion.c (test_is_signed_integer,
306 test_is_unsigned_integer): Expect inexact integers to fail.
307
308 2004-07-10 Kevin Ryde <user42@zip.com.au>
309
310 * tests/hash.test: New file.
311 * Makefile.am (SCM_TESTS): Add it.
312
313 2004-07-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
314
315 * standalone/test-unwind.c: Use scm_from_int instead of
316 SCM_MAKINUM and scm_is_eq instead SCM_EQ_P.
317
318 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
319
320 * standalone/test-conversion.c: Don't define SCM_T_INTMAX_MIN,
321 etc, they are now provided by libuile.h.
322 (test_int_sizes): New.
323
324 2004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
325
326 * standalone/test-num2integral.c, standalone/test-unwind.c:
327 Replaced all uses of deprecated SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
328 SCM_NEGATE_BOOL, and SCM_BOOLP with scm_is_false, scm_is_true,
329 scm_from_bool, and scm_is_bool, respectively.
330
331 * standalone/Makefile.am: Added test-conversion to the TESTS.
332
333 * standalone/test-conversion.c: New file.
334
335 2004-06-20 Rob Browning <rlb@defaultvalue.org>
336
337 * tests/srfi-31.test: new test for SRFI-31.
338
339 * Makefile.am (SCM_TESTS): add tests/srfi-31.scm.
340
341 2004-06-15 Marius Vollmer <marius.vollmer@uni-dortmund.de>
342
343 * tests/numbers.test (number->string): Some results might differ
344 between versions of Guile compiled optimized and unoptimized.
345 Both results are accepted now.
346
347 2004-05-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
348
349 * tests/syntax.test: Added various tests to check that
350 unmemoization works correctly.
351
352 2004-05-30 Kevin Ryde <user42@zip.com.au>
353
354 * lib.scm (exception:numerical-overflow): New define.
355 * tests/numbers.test (modulo-expt): Use it and
356 exception:wrong-type-arg, avoiding empty "" regexp which is invalid on
357 BSD. Reported by Andreas Vögele.
358
359 2004-05-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
360
361 * standalone/test-asmobs-lib.c: Fixed include statement.
362
363 2004-05-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
364
365 * tests/goops.test: Wrap tests in module (test-suite
366 test-<file-name without .test>). Remove calls to deprecated macro
367 `undefine'.
368
369 2004-05-10 Marius Vollmer <mvo@zagadka.de>
370
371 * tests/numbers.test (number->string): Added tests for
372 non-radix-10 floating point conversions.
373
374 2004-05-10 Kevin Ryde <user42@zip.com.au>
375
376 * tests/numbers.test (logbit?): New tests.
377
378 2004-05-09 Kevin Ryde <user42@zip.com.au>
379
380 * tests/srfi-19.test (test-dst, string->date local DST): Test with
381 "EST5EDT" instead of "CET", since HP-UX doesn't know CET. Reported by
382 Andreas Vögele.
383
384 2004-05-03 Kevin Ryde <user42@zip.com.au>
385
386 * tests/time.test (strftime): Force tm:isdst to 0 for the test, for
387 the benefit of HP-UX. Reported by Andreas Vögele.
388 Use set-tm:zone rather than a hard coded vector offset.
389
390 2004-04-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
391
392 * tests/elisp.test: Wrap tests in module (test-suite
393 test-<file-name without .test>), following a practice that was
394 used on a couple of files already.
395
396 2004-04-28 Kevin Ryde <user42@zip.com.au>
397
398 * standalone/test-num2integral.c (test_long_long): Exercise
399 out-of-range errors on various cases.
400 (test_ulong_long): New function, split from test_long_long and
401 similarly exercising out-of-range.
402
403 2004-04-26 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
404
405 * tests/syntax.test: Add test case to check the correct handling
406 of define expressions.
407
408 2004-04-25 Kevin Ryde <user42@zip.com.au>
409
410 * tests/socket.test: New file, exercising inet-ntop.
411 * Makefile.am (SCM_TESTS): Add it.
412
413 2004-04-24 Kevin Ryde <user42@zip.com.au>
414
415 * tests/srfi-11.test: New file.
416 * Makefile.am (SCM_TESTS): Add it.
417
418 2004-04-22 Kevin Ryde <user42@zip.com.au>
419
420 * standalone/test-round.c: New file, exercising scm_round.
421 * standalone/Makefile.am: Add it.
422
423 2004-04-15 Kevin Ryde <user42@zip.com.au>
424
425 * tests/numbers.test (max, min): Exercise some inum/frac, frac/inum,
426 big/frac, frac/big and frac/frac cases.
427
428 * tests/numbers.test (min): Correction, test "documented? min" not
429 "documented? max".
430
431 2004-04-06 Kevin Ryde <user42@zip.com.au>
432
433 * tests/numbers.test (quotient, remainder): Exercise inum/big at and
434 near special case inum == fixnum-min, big == -fixnum-min.
435
436 2004-03-26 Kevin Ryde <user42@zip.com.au>
437
438 * tests/numbers.test (min, max): Check inexactness of big/real and
439 real/big combinations, collect up tests under arg types for clarity.
440
441 2004-03-26 Eric Hanchrow <offby1@blarg.net>
442
443 * tests/numbers.test (modulo-expt): New tests.
444
445 2004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
446
447 * tests/eval.test: Added tests which reflect the recent fixes to
448 copy-tree.
449
450 2004-02-29 Kevin Ryde <user42@zip.com.au>
451
452 * tests/posix.test (execl, execlp, execle): Exercise errors where
453 program not found. [But disabled, due to problems with threading.]
454
455 2004-02-22 Kevin Ryde <user42@zip.com.au>
456
457 * tests/numbers.test (max, min): Exercise some complex num cases.
458
459 2004-02-18 Marius Vollmer <mvo@zagadka.de>
460
461 * tests/fractions.test: Added copyright notice of Michael Stoll,
462 who probably wrote the original CLISP code.
463
464 2004-02-18 Kevin Ryde <user42@zip.com.au>
465
466 * tests/fractions.test: Remove 1/3 == 1.0/3.0, not true.
467
468 * tests/numbers.test (=): Exercise frac+real and frac+complex.
469
470 2004-02-17 Marius Vollmer <mvo@zagadka.de>
471
472 * Makefile.am (SCM_TESTS): Added test/fractions.test.
473
474 2004-02-12 Kevin Ryde <user42@zip.com.au>
475
476 * tests/unif.test (array?, array-fill!, array-prototype): Add tests.
477
478 2004-01-23 Marius Vollmer <mvo@zagadka.de>
479
480 * tests/r5rs_pitfall.scm: Removed again. I was confused. The
481 file added to SCM_TESTS was r5rs_pitfall.test, not
482 r5rs_pitfall.scm.
483
484 2004-01-23 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
485
486 * tests/syntax.test: Added test for unmemoizing internal defines.
487
488 2004-01-21 Marius Vollmer <mvo@zagadka.de>
489
490 * tests/srfi-26.test: New.
491 * Makefile.am (SCM_TESTS): Added it.
492
493 2004-01-11 Marius Vollmer <mvo@zagadka.de>
494
495 * tests/r5rs_pitfall.scm: New.
496 * Makefile.am (SCM_TESTS): Added it.
497
498 2004-01-11 Kevin Ryde <user42@zip.com.au>
499
500 * tests/exceptions.test (false-if-exception): Disable tests on
501 referencing expansion environment, reverted.
502
503 2004-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
504
505 * standalone/test-unwind.c: Adapted to 'frame' renamings.
506 (check_fluid): New.
507
508 * Makefile.am (SCM_TESTS): Added continuations.test.
509
510 2004-01-07 Kevin Ryde <user42@zip.com.au>
511
512 * tests/numbers.test (<): Add tests inum/bignum/flonum/frac with frac.
513
514 * tests/q.test: New file.
515 (q-pop!): Exercise this, in particular the "not/null?" bug reported by
516 Richard Todd.
517 * Makefile.am (SCM_TESTS): Add q.test.
518
519 * tests/unif.test: New file.
520 (uniform-array-set1!): Exercise this, in particular previous segv on
521 improper arg list.
522 * Makefile.am (SCM_TESTS): Add unif.test.
523
524 2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
525
526 * standalone/test-unwind.c (close_port, delete_file, check_ports):
527 New.
528
529 2004-01-03 Marius Vollmer <mvo@zagadka.de>
530
531 * standalone/test-unwind.c: New test, for the frames stuff.
532 * standalone/Makefile.am: Compile and run it.
533
534 2004-01-04 Kevin Ryde <user42@zip.com.au>
535
536 * tests/exceptions.test (false-if-exception): Add tests.
537
538 2003-11-30 Marius Vollmer <mvo@zagadka.de>
539
540 * tests/syntax.test: It's "#\\space", not "#\space".
541
542 2003-11-21 Marius Vollmer <mvo@zagadka.de>
543
544 * tests/numbers.test: #e1.2 is now exactly 12/10. Expect
545 exceptions when calling inexact? with a non-number.
546
547 2003-12-03 Kevin Ryde <user42@zip.com.au>
548
549 * tests/fractions.test: Exercise most-negative-fixnum over -ve of
550 most-negative-fixnum.
551
552 * tests/fractions.test (real-part): Expect fraction return, not
553 converted to flonum.
554
555 * tests/numbers.test (abs): Add a few more tests.
556
557 * tests/srfi-1.test (count): New tests.
558
559 2003-12-01 Mikael Djurfeldt <mdj@chunk.mit.edu>
560
561 * standalone/Makefile.am (snarfcppopts): Added -I$(top_srcdir).
562
563 2003-11-19 Rob Browning <rlb@defaultvalue.org>
564
565 * standalone/test-system-cmds: new test.
566
567 * standalone/Makefile.am (check_SCRIPTS): add test-system-cmds.
568 (TESTS): add test-system-cmds.
569
570 2003-11-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
571
572 * tests/numbers.test ("string->number"): Expect exact rationals
573 for things like "1/2" and "#e1.2".
574 ("inexact->exact"): Expect overflow error for infs and nans.
575
576 * tests/fractions.test: New file from Bill Schottstaedt. Thanks!
577
578 * tests/bit-operations.test (fixnum-bit): Round the result so that
579 fixnum-bit really is an integer.
580
581 2003-11-17 Marius Vollmer <mvo@zagadka.de>
582
583 * tests/srfi-17.test: Expect a "Bad variable" error for (set! #f
584 1).
585
586 2003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
587
588 * tests/syntax.test: Tests that check for the correct handling of
589 internal defines with begin work now.
590
591 2003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
592
593 * tests/syntax.test: Fixed test that checks for the correct
594 handling of macros in the context of internal defines.
595
596 2003-11-15 Kevin Ryde <user42@zip.com.au>
597
598 * tests/bit-operations.test: Use (test-suite lib), for the benefit of
599 standalone execution.
600
601 2003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
602
603 * tests/optargs.test: Wrap tests in module (test-suite
604 test-<file-name without .test>). Rewrite test to be R5RS
605 conforming.
606
607 * tests/syntax.test: Added test to check correct handling of
608 internal defines.
609
610 2003-11-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
611
612 * tests/syntax.test (exception:missing-body-expr): New.
613
614 Renamed section 'define' to 'top-level define' and added a new
615 section 'internal define' with some tests.
616
617 2003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
618
619 * tests/syntax.test (exception:missing/extra-expr-misc): Removed.
620
621 (exception:illegal-empty-combination): New.
622
623 (exception:missing/extra-expr): Unified capitalization.
624
625 Adapted test for '()' to the new way of error reporting.
626
627 2003-10-19 Kevin Ryde <user42@zip.com.au>
628
629 * tests/numbers.test: Use define-module to hide helper defines.
630 (dbl-mant-dig, ash-flo): New helpers.
631 (exact->inexact): New tests.
632
633 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
634
635 * tests/syntax.test (exception:bad-var): Removed.
636
637 Adapted tests for 'set!' to the new way of error reporting.
638
639 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
640
641 * tests/dynamic-scope.test (exception:missing-expr): Introduced
642 temporarily until all memoizers use the new way of error
643 reporting.
644
645 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
646
647 * tests/syntax.test (exception:missing/extra-expr,
648 exception:missing/extra-expr-misc): Renamed
649 exception:missing/extra-expr to exception:missing/extra-expr-misc.
650
651 (exception:missing/extra-expr-syntax,
652 exception:missing/extra-expr): Renamed
653 exception:missing/extra-expr-syntax to
654 exception:missing/extra-expr.
655
656 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
657
658 * lib.scm (exception:bad-variable): New.
659
660 * tests/syntax.test (exception:bad-binding,
661 exception:duplicate-binding): New.
662
663 (exception:duplicate-bindings): Removed.
664
665 Adapted tests for 'let', 'let*' and 'letrec' to the new way of
666 error reporting.
667
668 2003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
669
670 * tests/syntax.test (define exception:bad-formal, define
671 exception:duplicate-formal): New.
672
673 (exception:duplicate-formals): Removed.
674
675 (exception:bad-formals): Adapted to the new way of error
676 reporting.
677
678 Adapted tests for 'lambda' to the new way of error reporting.
679
680 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
681
682 * tests/syntax.test (exception:missing/extra-expr-syntax): Fixed
683 to be unaware of whether line number information is given or not.
684
685 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
686
687 * tests/syntax.test (exception:missing/extra-expr-syntax): New,
688 introduced temporarily until all memoizers use the new way of
689 error reporting.
690
691 Adapted tests for 'if' to the new way of error reporting.
692
693 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
694
695 * tests/syntax.test (exception:missing-expr,
696 exception:extra-expr): New.
697
698 Adapted tests for 'begin' to the new way of error
699 reporting.
700
701 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
702
703 * tests/syntax.test (exception:misplaced-else-clause,
704 exception:bad-cond-clause): New.
705
706 (exception:bad/missing-clauses, exception:extra-case-clause):
707 Removed.
708
709 Adapted tests for 'case' and 'cond' to the new way of error
710 reporting.
711
712 The tests that check if cond is hygienic pass now.
713
714 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
715
716 * tests/syntax.test: Fixed and activated test of empty case label
717 support.
718
719 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
720
721 * tests/syntax.test (exception:bad-expression,
722 exception:missing-clauses, exception:bad-case-clause,
723 exception:extra-case-clause, exception:bad-case-labels): New.
724
725 Added some tests and adapted tests for 'case' to the new way of
726 error reporting.
727
728 2003-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
729
730 * lib.scm (run-test-exception): Handle syntax errors.
731
732 2003-10-10 Marius Vollmer <mvo@zagadka.de>
733
734 * tests/numbers.test (inexact->exact): Use corrent argument order
735 for pass-if-exception. Use "+inf.0" instead of "+.inf", etc.
736
737 2003-10-09 Kevin Ryde <user42@zip.com.au>
738
739 * tests/numbers.test (inexact->exact): New tests.
740
741 * tests/poe.test: New file.
742 * Makefile.am: Add it.
743
744 2003-10-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
745
746 * lib.scm (exception:missing-expression): New.
747
748 * tests/dynamic-scope.test, tests/eval.test,
749 tests/r5rs_pitfall.test, tests/srfi-17.test, tests/syncase.test:
750 Wrap tests in module (test-suite test-<file-name without .test>),
751 following a practice that was used on a couple of files already.
752
753 * tests/dynamic-scope.test (exception:duplicate-binding,
754 exception:bad-binding): New.
755
756 * tests/dynamic-scope.test, tests/srfi-17.test, tests/syntax.test:
757 Execute syntactically wrong tests using eval. With the upcoming
758 new memoizer this is necessary in order to postpone the syntax
759 check to the actual evaluation of the syntactically wrong form.
760
761 * tests/syntax.test: Added some test cases and modified one test
762 case.
763
764 2003-10-02 Kevin Ryde <user42@zip.com.au>
765
766 * tests/ports.test (call-with-output-string): Test proc closing port.
767
768 2003-09-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
769
770 * guile-test: Wrapped in module (test-suite guile-test).
771
772 (main data-file-name test-file-name): Exported.
773
774 ((guile-user)::main): New function, wrapper for function
775 (test-suite guile-test)::main.
776
777 * tests/load.test: Wrapped in module (test-suite test-load).
778
779 * tests/ports.test: Wrapped in module (test-suite test-ports).
780
781 * tests/r4rs.test: Wrapped in module (test-suite test-r4rs).
782 Added comments about the required structure of the file itself,
783 since it is subject to some tests. Removed some now unnecessary
784 undefine operations.
785
786 * tests/syntax.test: Wrapped in module (test-suite test-syntax)
787
788 2003-09-19 Kevin Ryde <user42@zip.com.au>
789
790 * tests/popen.test: New file.
791 * Makefile.am (SCM_TESTS): Add it.
792
793 2003-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
794
795 * tests/numbers.test (equal?): Added tests.
796
797 * tests/numbers.test (=): Fixed and added some bignum related
798 tests.
799
800 2003-08-30 Kevin Ryde <user42@zip.com.au>
801
802 * tests/numbers.test (logcount): Add tests.
803
804 2003-08-23 Kevin Ryde <user42@zip.com.au>
805
806 * tests/srfi-1.test (list-copy): New tests.
807
808 * tests/srfi-19.test (date-week-number): Add tests.
809
810 2003-08-22 Kevin Ryde <user42@zip.com.au>
811
812 * tests/numbers.test (-): Exercise bignum - inum.
813
814 2003-08-17 Kevin Ryde <user42@zip.com.au>
815
816 * tests/syntax.test (while): Exercise break and continue from
817 recursive nested loops.
818
819 2003-08-14 Kevin Ryde <user42@zip.com.au>
820
821 * tests/syntax.test (while): New tests.
822
823 2003-08-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
824
825 * tests/numbers.test: Eliminated misuses of expect-fail. It
826 should only be used in cases, where guile has a known bug. It
827 should not be used in cases where an expression is expected to
828 return #f as its correct result.
829
830 2003-08-09 Kevin Ryde <user42@zip.com.au>
831
832 * tests/srcprop.test: New file.
833 * Makefile.am (SCM_TESTS): Add it.
834
835 2003-07-29 Kevin Ryde <user42@zip.com.au>
836
837 * tests/srfi-1.test (concatenate, concatenate!): New tests.
838 (length+): New tests.
839
840 * tests/srfi-34.test: Check cond-expand srfi-34.
841
842 2003-07-24 Kevin Ryde <user42@zip.com.au>
843
844 * tests/numbers.test (angle): New tests.
845
846 2003-07-18 Kevin Ryde <user42@zip.com.au>
847
848 * tests/numbers.test (*): Add complex/bignum test.
849
850 2003-07-14 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
851
852 * tests/srfi-1.test (partition): Add tests.
853
854 2003-07-08 Kevin Ryde <user42@zip.com.au>
855
856 * tests/numbers.test (make-polar, magnitude): New tests.
857
858 * tests/srfi-1.test (delete, delete!): Add more tests.
859 (delete-duplicates, delete-duplicates!): New tests.
860
861 2003-06-21 Kevin Ryde <user42@zip.com.au>
862
863 * tests/numbers.test (truncate, round, asinh, acosh, atanh): Add some
864 tests.
865
866 2003-06-19 Kevin Ryde <user42@zip.com.au>
867
868 * tests/posix.test: New file, exercising putenv, setenv, unsetenv.
869 * tests/threads.test: New file, exercising parallel.
870 * Makefile.am (SCM_TESTS): Add them.
871
872 2003-06-07 Kevin Ryde <user42@zip.com.au>
873
874 * tests/srfi-6.test: New file.
875 * Makefile.am (SCM_TESTS): Add it.
876
877 2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
878
879 * tests/chars.test: Fixed test comment. The bug that this test
880 detects was actually introduced by my patch from 2003-05-31.
881
882 2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
883
884 * tests/chars.test: Added test, attempting to apply a character.
885 This test will only pass if the other changes that are submitted
886 together with this patch are also applied.
887
888 2003-06-05 Kevin Ryde <user42@zip.com.au>
889
890 * tests/numbers.test (logcount): Add a few more tests, to exercise
891 recent scm_logcount change.
892
893 * tests/reader.test (reading): Test bad # error message is formattable.
894
895 2003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
896
897 * tests/pairs.test: Added.
898
899 2003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
900
901 * tests/vectors.test: Added.
902
903 2003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
904
905 * tests/guardians.test: Uses module (ice-9 weak-vector).
906
907 2003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
908
909 * lib.scm: Documented the short form for pass-if and expect-fail.
910
911 (pass-if, expect-fail): Simplified.
912
913 2003-05-30 Kevin Ryde <user42@zip.com.au>
914
915 * tests/numbers.test (max, min): Add tests involving NaNs.
916
917 2003-05-29 Stefan Jahn <stefan@lkcc.org>
918
919 * standalone/Makefile.am: Setup to build on mingw32.
920
921 2003-05-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
922
923 * tests/elisp.test: Added missing quote around vector constants.
924
925 2003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
926
927 * tests/r5rs_pitfall.test: Test 2.1 now passes.
928
929 2003-05-13 Kevin Ryde <user42@zip.com.au>
930
931 * tests/numbers.test (=, <, max, min): Add tests of bignum/inf
932 combinations.
933
934 * tests/srfi-1.test (delete, delete!): Test predicate call arg order.
935
936 2003-05-10 Kevin Ryde <user42@zip.com.au>
937
938 * tests/numbers.test (=, <): Add tests involving NaNs.
939
940 * tests/numbers.test (integer-length): Exercise some negatives, in
941 particular -2^n which is ...11100..00.
942
943 * tests/numbers.test (gcd): Exercise bignum/inum with a bignum not
944 fitting a ulong.
945
946 * tests/srfi-1.test: New file, exercising take and drop.
947 * Makefile.am (SCM_TESTS): Add it.
948
949 2003-05-06 Kevin Ryde <user42@zip.com.au>
950
951 * tests/numbers.test (-): Add test for negative inum subtract bignum.
952 (logcount): New tests, exercising some negatives.
953
954 2003-05-03 Marius Vollmer <mvo@zagadka.de>
955
956 * tests/r5rs_pitfall.test: New. Thanks to Dale P. Smith for
957 pointing us to these tests.
958
959 2003-04-30 Neil Jerram <neil@ossau.uklinux.net>
960
961 * Makefile.am (SCM_TESTS): Add tests/srfi-34.test.
962
963 * tests/srfi-34.test: New file.
964
965 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
966
967 * tests/syntax.test: Modified some tests to use eval when
968 providing bad syntax. Otherwise, the memoizer will report an
969 error immediately after reading the form, without even the chance
970 to get the pass-if-exception mechanism started.
971
972 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
973
974 * tests/guardians.test: Added some more elaborate and
975 sophisticated tests for the guardian functionality.
976
977 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
978
979 * tests/sort.test: Added. Both tests in that file did fail (one
980 even with a segfault) with CVS guile before the recent changes to
981 sort.c.
982
983 2003-04-17 Mikael Djurfeldt <djurfeldt@nada.kth.se>
984
985 * tests/goops.test: Added tests for correctness of class
986 precedence list in all basic classes and tests for eqv? and
987 equal?.
988
989 2003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
990
991 * tests/goops.test: Added tests for class redefinition, object
992 update and active slots.
993
994 2003-04-14 Rob Browning <rlb@defaultvalue.org>
995
996 * standalone/test-asmobs-lib.c (libtest_asmobs_init): include
997 test-asmobs-lib.x rather than test-asmobs-lib.x.c.
998
999 * standalone/Makefile.am: change from .c.x to .x to be consistent
1000 with the rest of guile.
1001
1002 2003-04-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
1003
1004 * standalone/Makefile.am (snarfcppopts): use DEFAULT_INCLUDES
1005 instead of INCLUDES
1006
1007 2003-04-07 Rob Browning <rlb@defaultvalue.org>
1008
1009 * Makefile.am (SUBDIRS): add standalone.
1010
1011 * guile-test: added "Running test FOO" output by default. There
1012 may be a good reason to remove this, but the output can be helpful
1013 in determining where a failure occurred.
1014
1015 * standalone/test-num2integral.c: new test -- one new regression
1016 check.
1017
1018 * standalone/test-gh.c: new test code (migrated from
1019 tests/c-api/) -- a trivial start.
1020
1021 * standalone/test-asmobs-lib.c: new test script (migrated from
1022 tests/asmobs/).
1023
1024 * standalone/test-asmobs: new test script.
1025
1026 * standalone/README: new file.
1027
1028 * standalone/Makefile.am: new file.
1029
1030 * standalone/.cvsignore: new file.
1031
1032 * tests/asmobs/Makefile: removed (functionality is now in standalone/).
1033
1034 * tests/asmobs/README: removed (functionality is now in standalone/).
1035
1036 * tests/asmobs/asmobs-test.scm: removed (functionality is now in
1037 standalone/).
1038
1039 * tests/asmobs/asmobs.c: removed (functionality is now in standalone/).
1040
1041 * tests/asmobs/: removed (functionality is now in standalone/).
1042
1043 * tests/c-api/strings.c: add a note to the source about this code
1044 being unused.
1045
1046 2003-04-05 Marius Vollmer <mvo@zagadka.de>
1047
1048 * Changed license terms to the plain LGPL thru-out.
1049
1050 2003-03-24 Rob Browning <rlb@defaultvalue.org>
1051
1052 * tests/numbers.test: added tests (some simple) for various funcs.
1053 ("odd?"): added tests.
1054 ("even?"): added tests.
1055 ("nan?"): added tests.
1056 ("abs"): added tests.
1057 ("lcm"): added tests.
1058 ("number->string"): added tests.
1059 ("number?"): added tests.
1060 ("complex?"): added tests.
1061 ("real?"): added tests.
1062 ("rational?"): added tests.
1063 ("integer?"): added tests.
1064 ("inexact?"): added tests.
1065 ("="): added tests.
1066 ("zero?"): added tests.
1067 ("positive?"): added tests.
1068 ("negative?"): added tests.
1069
1070 * lib.scm (pass-if): allow really simple tests where the test code
1071 is also the name like (pass-if (even? 2)).
1072 (expect-fail): allow really simple tests where the test code is
1073 also the test name like (expect-fail (even? 2)).
1074
1075 2003-03-19 Marius Vollmer <mvo@zagadka.de>
1076
1077 * tests/format.test ("format basic output"): Added test for "~F"
1078 from Matthias Koeppe.
1079
1080 2003-02-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
1081
1082 * tests/elisp.test: Use module (ice-9 weak-vector).
1083
1084 * tests/weaks.test: Use module (ice-9 weak-vector).
1085
1086 2002-12-08 Rob Browning <rlb@defaultvalue.org>
1087
1088 * tests/version.test: test (effective-version).
1089
1090 2002-11-06 Neil Jerram <neil@ossau.uklinux.net>
1091
1092 * tests/options.test: New.
1093
1094 2002-10-04 Rob Browning <rlb@defaultvalue.org>
1095
1096 * tests/numbers.test ("expt"): add tests.
1097
1098 2002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
1099
1100 * Makefile.am (dist-hook): Do not distribute CVS directories.
1101 Thanks to Greg Troxel!
1102
1103 2002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
1104
1105 * tests/reader.test: change misc-error in read-error.
1106
1107 2002-07-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1108
1109 * tests/goops.test: Added tests for define-generic and
1110 define-accessor.
1111
1112 2002-07-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1113
1114 * tests/goops.test: Added tests for define-class.
1115
1116 2002-05-07 Marius Vollmer <mvo@zagadka.ping.de>
1117
1118 * tests/numbers.test (/): Expect divison by an inexact zero to
1119 yield +inf.0.
1120
1121 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
1122
1123 * tests/regexp.test (regexp-substitute/global): Do not test with
1124 empty regexp. Empty regexps do not work on NetBSD.
1125
1126 * tests/syncase.test (basic syncase macro): Added.
1127
1128 2002-04-26 Marius Vollmer <mvo@zagadka.ping.de>
1129
1130 * tests/srfi-13.test (string-tokenize): Updated for fixed
1131 semantics.
1132
1133 2002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
1134
1135 * Makefile.am (SCM_TESTS_DIRS, dist-hook): New, distribute
1136 directories manually.
1137
1138 2002-02-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
1139
1140 * guile-test (main): Handle `--flag-unresolved'. No longer set
1141 exit value to #f unconditionally on UNRESOLVED results.
1142 (for-each-file): Do not recurse into "CVS" or "RCS" subdirs.
1143
1144 2002-02-08 Neil Jerram <neil@ossau.uklinux.net>
1145
1146 * tests/elisp.test: Add tests of Elisp expression evaluation.
1147
1148 2002-01-25 Neil Jerram <neil@ossau.uklinux.net>
1149
1150 * tests/load.test: New test; for search-path with Elisp
1151 nil-terminated lists for PATH and EXTENSIONS.
1152
1153 * tests/elisp.test: More tests for Scheme primitives that should
1154 accept Elisp nil-terminated lists.
1155
1156 2002-01-24 Neil Jerram <neil@ossau.uklinux.net>
1157
1158 * tests/elisp.test: More new tests for the Elisp nil value.
1159
1160 2002-01-22 Neil Jerram <neil@ossau.uklinux.net>
1161
1162 * Makefile.am (SCM_TESTS): Added elisp.test.
1163
1164 * tests/elisp.test: New file.
1165
1166 2001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
1167
1168 * tests/numbers.test: Added more division by zero tests.
1169
1170 2001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
1171
1172 * tests/numbers.test: Added division by zero tests.
1173
1174 2001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1175
1176 * tests/syntax.test: Added some tests, updated some others with
1177 respect to recent changes in eval.c. Further, extracted test
1178 cases for guile's extended set! functionality to srfi-17.test.
1179
1180 * tests/srfi-17.test: New file.
1181
1182 2001-11-04 Stefan Jahn <stefan@lkcc.org>
1183
1184 * tests/ports.test: Run (close-port) before (delete-file) if
1185 necessary/advisory.
1186
1187 2001-10-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1188
1189 * tests/eval.test: Added tests for promises.
1190
1191 2001-10-21 Mikael Djurfeldt <mdj@linnaeus>
1192
1193 * lib.scm: Move module the system directives `export',
1194 `export-syntax', `re-export' and `re-export-syntax' into the
1195 `define-module' form. This is the recommended way of exporting
1196 bindings.
1197
1198 2001-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
1199
1200 * tests/syntax.test: Added test cases for 'cond =>' syntax with
1201 else clause. Changed some tests and comments related to the
1202 'case' form to reflect recent changes in the implementation.
1203
1204 2001-10-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
1205
1206 * tests/syntax.test: Added test cases for 'lambda' syntax.
1207
1208 2001-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1209
1210 * tests/syntax.test: Added test cases for 'case' syntax.
1211
1212 2001-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1213
1214 * tests/numbers.test: Added a test case that checks if valid
1215 number strings are transformed correctly by string->number.
1216
1217 2001-09-21 Rob Browning <rlb@defaultvalue.org>
1218
1219 * tests/numbers.test (fixnum-bit): compute dynamically.
1220
1221 * tests/bit-operations.test (fixnum-bit): compute dynamically.
1222
1223 2001-09-07 Thien-Thi Nguyen <ttn@revel.glug.org>
1224
1225 * tests/getopt-long.test ("apples-blimps-catalexis example",
1226 "multiple occurances"): New top-level sections.
1227
1228 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
1229
1230 * tests/numbers.test: Made some of the patterns better readable.
1231
1232 2001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
1233
1234 * tests/srfi-19.test (test-time-comparision,
1235 test-time-arithmatic): New procs.
1236
1237 Add time comparison tests using new procs.
1238 Thanks to Alex Shinn.
1239
1240 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
1241
1242 * tests/dynamic-scope.test: New file.
1243
1244 2001-08-24 Thien-Thi Nguyen <ttn@revel.glug.org>
1245
1246 * tests/srfi-13.test (string-for-each, string-for-each-index):
1247 Add tests. (Thanks to Alex Shinn.)
1248
1249 2001-08-22 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1250
1251 * tests/srfi-13.test (string-map): Swapped order of string and
1252 proc args to conform with the srfi. (Thanks to Alex Shinn.)
1253
1254 2001-08-12 Thien-Thi Nguyen <ttn@revel.glug.org>
1255
1256 * tests/getopt-long.test (exception:no-such-option,
1257 exception:option-does-not-support-arg,
1258 exception:option-must-be-specified,
1259 exception:option-must-have-arg, exception:not-enough-args):
1260 New vars.
1261
1262 ("option-ref", "required", "specified no value, given anyway",
1263 "specified arg required"): New top-level sections.
1264
1265 2001-08-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
1266
1267 * tests/numbers.test: Added Some syntax tests for
1268 string->number.
1269
1270 2001-08-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1271
1272 * Makefile.am (TESTS): Do not call the variable "TESTS", call it
1273 "SCM_TESTS". This has special meaning to automake. How many
1274 tries left to get this right, mvo?
1275
1276 2001-08-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1277
1278 * Makefile.am (TESTS): List tests explicitely instead of using a
1279 wildcard. Wildcards don't seem to work for VPATH "make dist"s.
1280
1281 2001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
1282
1283 * Makefile.am: New file, to control distribution of the
1284 test-suite.
1285
1286 2001-08-02 Thien-Thi Nguyen <ttn@revel.glug.org>
1287
1288 * tests/getopt-long.test: New file.
1289
1290 2001-08-01 Thien-Thi Nguyen <ttn@revel.glug.org>
1291
1292 * lib.scm (run-test-exception): Add special handling for
1293 `error'-generated exceptions, which pass key `misc-error' and
1294 leave messages unformatted.
1295
1296 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1297
1298 * tests/alist.test, tests/bit-operations.test,
1299 tests/common-list.test, tests/environments.test, tests/eval.test,
1300 tests/gc.test, tests/hooks.test, tests/import.test,
1301 tests/interp.test, tests/list.test, tests/load.test,
1302 tests/numbers.test, tests/ports.test, tests/r4rs.test,
1303 tests/version.test, tests/weaks.test, lib.scm, guile-test: Updated
1304 copyright notice.
1305
1306 2001-07-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1307
1308 * tests/srfi-14.test: New file.
1309
1310 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
1311
1312 * tests/import.test: New file.
1313
1314 2001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
1315
1316 * tests/goops.test: Started with some real tests.
1317
1318 2001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
1319
1320 * guile-test: Use module (ice-9 rdelim).
1321
1322 2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1323
1324 * tests/srfi-4.test: New file.
1325
1326 2001-06-16 Marius Vollmer <mvo@zagadka.ping.de>
1327
1328 Thanks to Matthias Köppe!
1329
1330 * tests/ports.test: New test for output port line counts.
1331 * tests/format.test, tests/optargs.test, tests/srfi-19.test: New
1332 files.
1333
1334 2001-05-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1335
1336 * tests/symbols.test ("gensym"): New tests for long gensym
1337 prefices and embedded NULs in prefices.
1338
1339 2001-05-21 Marius Vollmer <mvo@zagadka.ping.de>
1340
1341 * test/goops.test, test/syncase.test: New, minimal tests.
1342
1343 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
1344
1345 * tests/version.test: Updated test for new micro version stuff.
1346
1347 2001-05-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1348
1349 * tests/srfi-13.test: More tests.
1350
1351 2001-05-10 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1352
1353 * tests/srfi-10.test: New file.
1354
1355 * tests/srfi-9.test: New file.
1356
1357 * tests/srfi-13.test: Added some more tests.
1358
1359 2001-05-09 Thien-Thi Nguyen <ttn@revel.glug.org>
1360
1361 * tests/eval.test: ("evaluator" "memoization"): New test
1362 prefix block.
1363 ("transparency"): New "evaluator memoization" test.
1364
1365 2001-05-08 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1366
1367 * tests/srfi-13.test: Added module access kludge, and uncommented
1368 some tests depending on this.
1369
1370 2001-05-07 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1371
1372 * tests/srfi-13.test: New file testing the SRFI string library.
1373
1374 2001-04-26 Gary Houston <ghouston@arglist.com>
1375
1376 * tests/r4rs.test: delete files tmp1, tmp2, tmp3 after the tests
1377 have run.
1378
1379 * tests/ports.test (test-file), tests/load.test (temp-dir):
1380 redefined using data-file-name instead of tmpnam. the test files
1381 will be created in the build directory instead of /var/tmp or
1382 whereever tmpnam puts them.
1383
1384 2001-04-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
1385
1386 * tests/symbols.c: Added some tests.
1387
1388 2001-03-19 Gary Houston <ghouston@arglist.com>
1389
1390 * tests/r4rs.test: use test-file-name to locate r4rs.test,
1391 not data-file-name.
1392
1393 * guile-test: define tmp-dir, the location where r4rs.test will
1394 create it's temporary files.
1395 (data-file-name): use tmp-dir. this must be under build-dir,
1396 not src-dir.
1397
1398 2001-03-18 Gary Houston <ghouston@arglist.com>
1399
1400 * guile-test: use #!/bogus-path/..., not #!/home/dirk/... in the
1401 first line.
1402
1403 2001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
1404
1405 * tests/syntax.test: Added a test for let* bindings and
1406 re-arranged and slightly improved the existing one.
1407
1408 2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1409
1410 * tests/syntax.test ("let*"): Changed the `duplicate bindings'
1411 test, dups are allowed in `let*' and are now expected to pass.
1412
1413 2001-03-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
1414
1415 * lib.scm (run-test-exception): Preserve the original error's
1416 stack for re-throwing.
1417
1418 2001-03-04 Marius Vollmer <mvo@zagadka.ping.de>
1419
1420 * tests/syntax.test ("let,duplicate bindings", "let*,duplicate
1421 bindings", "letrec,duplicate bindings"): Expect to pass, bug has
1422 been fixed.
1423
1424 2001-03-03 Marius Vollmer <mvo@zagadka.ping.de>
1425
1426 * tests/syntax.test ("duplicate formals"): New category, move
1427 appropriate tests here. Expect them to pass.
1428 ("empty parentheses"): Expect to pass, bug has been fixed.
1429
1430 * tests/alist.test: Use "'()" instead of "()" in all places
1431 where the empty list is meant.
1432
1433 2001-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
1434
1435 * lib.scm (exception:unbound-var, exception:wrong-num-args): New
1436 exported constants.
1437
1438 * tests/r4rs.test: Make sure that no bindings for x and y exist
1439 after the file is loaded.
1440
1441 * tests/syntax.test: New file.
1442
1443 * tests/exceptions.test, tests/syntax.test, tests/eval.test:
1444 Moved the test cases that are related to guile's syntactic forms
1445 from tests/exceptions.test to tests/syntax.test. Moved tests
1446 related to evaluation and application to tests/eval.test.
1447
1448 * tests/exceptions.test: Added some test cases that check guile's
1449 exception handling.
1450
1451 2001-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
1452
1453 * tests/exceptions.test, tests/numbers.test: Moved the number
1454 related test cases from tests/exceptions.test to
1455 tests/numbers.test.
1456
1457 * tests/numbers.test: Added a test case.
1458
1459 2001-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
1460
1461 * tests/symbols.test: New file.
1462
1463 (exception:immutable-string): New constant. Currently, this is a
1464 dummy since guile does not have immutable strings.
1465
1466 * tests/exceptions.test, tests/strings.test, tests/symbols.test:
1467 Moved the string related test cases from tests/exceptions.test to
1468 tests/strings.test and the symbol related test cases to
1469 tests/symbols.test.
1470
1471 * tests/strings.test: Copyright notice updated. Added a couple
1472 of test cases.
1473
1474 (exception:immutable-string): New constant. Currently, this is a
1475 dummy since guile does not have immutable strings.
1476
1477 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1478
1479 * tests/exceptions.test: Use expect-fail-exception to indicate
1480 test cases where exceptions should occur, but don't.
1481
1482 (exception:bad-bindings, exception:bad-formals, exception:bad-var,
1483 exception:missing/extra-expr): New constants.
1484
1485 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1486
1487 * tests/reader.test, tests/exceptions.test: Moved the reader
1488 related test cases from tests/exceptions.test to
1489 tests/reader.test.
1490
1491 * tests/reader.test (exception:eof, exception:unexpected-rparen):
1492 New constants.
1493
1494 * tests/exceptions.test (read-string, x:eof, x:unexpected-rparen):
1495 Removed.
1496
1497 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1498
1499 * lib.scm (signals-error?, signals-error?*): Removed.
1500
1501 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1502
1503 * lib.scm: Added comment about new convenience functions/macros
1504 to test for exceptions.
1505
1506 (exception:out-of-range, exception:wrong-type-arg): New exported
1507 constants.
1508
1509 (run-test-exception): New function.
1510
1511 (pass-if-exception, expect-fail-exception): New exported macros.
1512
1513 * tests/environments.test: Fixed tests that were checking for
1514 exceptions when set!ing an unbound symbol.
1515
1516 (exception:unbound-symbol): New constant.
1517
1518 * tests/hooks.test (catch-error-returning-true, pass-if-not,
1519 catch-error-returning-false), tests/weaks.test
1520 (catch-error-returning-true, pass-if-not,
1521 catch-error-returning-false): Removed. The macro pass-if-not was
1522 not used. The macro catch-error-returning-false is unnecessary
1523 since exceptions are caught by the test-suite anyway. The
1524 functionality of catch-error-returning-true is provided by the new
1525 convenience macro pass-if-exception.
1526
1527 * tests/hooks.test (exception:wrong-num-hook-args): New constant.
1528 Maybe a standard wrong-num-arg exception should be thrown instead
1529 of a misc-error?
1530
1531 * tests/reader.test (try-to-read): Replaced by read-string.
1532
1533 (read-string): New function.
1534
1535 * tests/alist.test, tests/environments.test, tests/eval.test,
1536 tests/hooks.test, tests/list.test, tests/ports.test,
1537 tests/reader.test, tests/strings.test, tests/weaks.test: Replace
1538 tests for exceptions with the new convenience macros.
1539
1540 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1541
1542 * tests/alist.test: Remove redundant test name prefix.
1543
1544 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
1545
1546 * lib.scm (pass-if): Tests shall return a boolean value.
1547
1548 * tests/bit-operations.test (documented?), tests/common-list.test
1549 (documented?), tests/environments.test (documented?),
1550 tests/eval.test (documented?), tests/gc.test (documented?),
1551 tests/numbers.test (documented?), tests/guardians.test,
1552 tests/hooks.test, tests/interp.test, tests/weaks.test: Make sure
1553 that tests return a boolean value.
1554
1555 * tests/list.test (documented?): New function, replace all checks
1556 for documentation with calls to this function.
1557
1558 2001-02-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
1559
1560 * lib.scm (data-file): Remove from export list.
1561
1562 2001-02-22 Thien-Thi Nguyen <ttn@revel.glug.org>
1563
1564 * tests/exceptions.test (syntax lambda): Renamed from (lambda).
1565 (syntax lambda cond-arrow-proc): Renamed from (lambda cond-arrow-proc).
1566 (syntax reading): New section.
1567 (syntax let*): New section.
1568 (syntax letrec): New section.
1569 (syntax set!): New section.
1570 (syntax misc): New section.
1571 (bindings unbound): New section.
1572 (bindings immutable-modification): New section.
1573 (bindings let): New section.
1574 (bindings let*): New section.
1575 (bindings letrec): New section.
1576
1577 * tests/exceptions.test: New file.
1578
1579 2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1580
1581 * guile-test: Use (ice-9 and-let-star) instead of (ice-9
1582 and-let*).
1583
1584 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1585
1586 This patch fixes things that I have broken with the last one :-(
1587
1588 * guile-test (test-suite): New variable.
1589
1590 (data-file-name): New function. Has the same purpose as the
1591 former function data-file from lib.scm. Moved here in order to
1592 have all file name handling at the same place. In contrast to the
1593 former 'data-file function, it is not checked whether a file
1594 exists. This allows to use this function also for file names of
1595 files that are still to be created.
1596
1597 (test-file-name): Use the global 'test-suite variable.
1598
1599 (main): Initialize 'test-suite instead of a local variable.
1600
1601 * lib.scm: Don't import paths any more.
1602
1603 (data-file): Removed. Resurrected with a sligtly different
1604 functionality as 'data-file-name' in guile-test.
1605
1606 * r4rs.scm: For all references to temporary file, make use of
1607 data-file-name.
1608
1609 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1610
1611 The following patch was sent by Thien-Thi Nguyen and a little bit
1612 modified by me.
1613
1614 * guile-test: Usage and installation comments improved. Added
1615 support for --test-suite and --debug command line options.
1616
1617 (default-test-suite): Added to allow for simplified
1618 configurability. No need to load the paths file any more.
1619
1620 (enable-debug-mode): New function. Will be called when the
1621 --debug command line option is given.
1622
1623 (test-root): Removed. The test directory has to be fully given.
1624 This allows for arbitrarily named test directories.
1625
1626 (test-file-name, enumerate-tets): Take the test directory as a
1627 paramter instead of using the global variable 'test-root'.
1628
1629 (main): Handle the new command line options. Return an exit code
1630 depending on whether all tests came out as expected.
1631
1632 * README: Updated.
1633
1634 * paths.scm: Removed.
1635
1636 2001-01-24 Gary Houston <ghouston@arglist.com>
1637
1638 * tests/ports.test: include (ice-9 rdelim) module.
1639
1640 2001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
1641
1642 * tests/numbers.test: Converted to do real boundary testing.
1643
1644 2001-01-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1645
1646 * tests/bit-operations.test: Added.
1647
1648 2000-11-03 Dirk Herrmann <D.Herrmann@tu-bs.de>
1649
1650 * tests/gc.test: Added.
1651
1652 2000-10-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
1653
1654 * tests/strings.test: string=? is fixed.
1655
1656 2000-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1657
1658 * tests/list.test: Removed references to sloppy-mem(q|v|ber)
1659
1660 2000-09-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1661
1662 * tests/strings.test: Added a test to help remember that string=?
1663 and friends need fixing.
1664
1665 2000-09-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
1666
1667 * tests/environments.test: For tests that rely on garbage
1668 collection, conservative scanning can be a problem. Add a comment
1669 for these tests and make them turn out unresolved if things don't
1670 work as expected.
1671
1672 2000-09-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
1673
1674 * tests/environments.test: Finished and cleaned up the tests for
1675 the leaf environments. Added a complete set of testcases for the
1676 leaf environment based eval environments. Started with the tests
1677 for the import environments.
1678
1679 2000-08-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
1680
1681 * tests/environments.test: Added.
1682
1683 2000-08-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
1684
1685 * lib.scm (pass-if, expect-fail): Generalized to allow a sequence
1686 of expressions.
1687
1688 * tests/eval.test: Fix documentation test.
1689
1690 2000-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
1691
1692 * tests/list.test: Added tests for list-ref, list-set! and
1693 list-cdr-set!
1694
1695 2000-06-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
1696
1697 * tests/common-list.test: Added.
1698
1699 2000-06-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
1700
1701 * tests/eval.test: Added.
1702
1703 2000-06-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
1704
1705 * tests/list.test: Use cons* instead of list*.
1706
1707 2000-06-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1708
1709 * tests/numbers.test, tests/list.test: Updated for new
1710 documentation module.
1711
1712 2000-05-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
1713
1714 * tests/hooks.test: make-hook-with-name is deprecated.
1715
1716 2000-05-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
1717
1718 * tests/list.test, tests/numbers.test: Added.
1719
1720 2000-05-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
1721
1722 * guile-test: Eliminate use of catch-test-errors.
1723
1724 * lib.scm: Adopted a couple of nice ideas from Greg.
1725
1726 (pass, fail, expect-failure, expect-failure-if,
1727 expect-failure-if*, catch-test-errors, catch-test-errors*,
1728 expected-failure-fluid, pessimist?): Removed.
1729
1730 (run-test, expect-fail, result-tags, important-result-tags):
1731 Added.
1732
1733 (report, make-count-reporter, print-counts, make-log-reporter,
1734 full-reporter, user-reporter): Reporters take two mandatory
1735 arguments and make use of the tag descriptions in result-tags and
1736 important-result-tags.
1737
1738 * tests/alist.test, tests/hooks.test, tests/ports.test,
1739 tests/weaks.test: Don't use catch-test-errors and
1740 expect-failure-if.
1741
1742 2000-05-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
1743
1744 * mambo.test: Removed dummy file.
1745
1746 2000-03-31 Gary Houston <ghouston@arglist.com>
1747
1748 * tests/ports.test (non-blocking-I/O): a couple more details:
1749 a) combine the O_NONBLOCK flag with the default flags instead
1750 of replacing them. b) check EWOULDBLOCK as well as EAGAIN.
1751
1752 2000-03-22 Jim Blandy <jimb@savonarola.red-bean.com>
1753
1754 * lib.scm: Doc fixes.
1755
1756 Sun Jan 16 14:01:51 2000 Greg J. Badros <gjb@cs.washington.edu>
1757
1758 * paths.scm: Assume that ~/guile-core/test-suite is the location
1759 of the test suite now.
1760
1761 * tests/version.test: Added -- version.c had 0% coverage before,
1762 now at 100%.
1763
1764 * tests/chars.test: Added -- needed test of char-is-both?.
1765
1766 1999-12-22 Greg Harvey <Greg.Harvey@thezone.net>
1767
1768 * tests/weaks.test, tests/hooks.test: Added.
1769
1770 1999-12-18 Greg Harvey <Greg.Harvey@thezone.net>
1771
1772 * tests/alist.test: Added.
1773
1774 Fri Dec 17 12:14:10 1999 Greg J. Badros <gjb@cs.washington.edu>
1775
1776 * tests/c-api.test: Refine the list of files that are checked in
1777 the seek-offset-test. Was just using files that end in "c", but
1778 that caught the new ".doc" files, too, so make sure that files end
1779 in ".c" before requiring that they include unistd.h if they
1780 reference SEEK_(SET|CUR|END).
1781
1782 1999-10-24 Gary Houston <ghouston@freewire.co.uk>
1783
1784 * tests/ports.test ("string ports"): test seeking/unreading from
1785 an input string and seeking an output string.
1786
1787 1999-10-20 Gary Houston <ghouston@freewire.co.uk>
1788
1789 * tests/ports.test: in seek/tell test on input port, also test
1790 that ftell doesn't discard unread chars.
1791
1792 1999-10-18 Gary Houston <ghouston@freewire.co.uk>
1793
1794 * tests/ports.test: add seek/tell tests for unidirectional ports.
1795
1796 1999-09-25 Jim Blandy <jimb@savonarola.red-bean.com>
1797
1798 * tests/reader.test: Check that number->string checks its radix
1799 properly.
1800
1801 1999-09-20 Jim Blandy <jimb@savonarola.red-bean.com>
1802
1803 * tests/ports.test: Check that our input functions cope when
1804 current-input-port is closed.
1805
1806 * tests/regexp.test: Check regexp-substitute/global when there are
1807 no matches. (Duh.)
1808
1809 1999-09-15 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1810
1811 * tests/c-api.test: New file. Add test to check that all source
1812 files which use SEEK_SET, SEEK_CUR, and SEEK_END include unistd.h.
1813
1814 1999-09-14 Gary Houston <ghouston@freewire.co.uk>
1815
1816 * tests/ports.test: test non-blocking I/O.
1817
1818 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
1819
1820 * tests/strings.test: Add test for substring-move! argument checking.
1821
1822 * lib.scm (signals-error?, signals-error?*): New macro and function.
1823 * tests/reader.test: Use them.
1824
1825 * tests/interp.test: Add copyright notice.
1826
1827 * tests/reader.test: New test file.
1828
1829 * tests/regexp.test: New test file.
1830
1831 1999-09-06 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1832
1833 * tests/interp.test: Added tests for evaluation of closure bodies.
1834
1835 1999-09-03 James Blandy <jimb@mule.m17n.org>
1836
1837 * tests/multilingual.nottest: New file, which we will turn into a
1838 test file once we actually have multilingual support to test.
1839
1840 * tests/load.test: New test file.
1841
1842 1999-08-30 James Blandy <jimb@mule.m17n.org>
1843
1844 * tests/strings.test: New test file.
1845
1846 1999-08-29 Gary Houston <ghouston@easynet.co.uk>
1847
1848 * tests/ports.test: test unread-char and unread-string.
1849
1850 1999-08-19 Gary Houston <ghouston@easynet.co.uk>
1851
1852 * tests/ports.test: test line-buffering of fports.
1853
1854 1999-08-18 Gary Houston <ghouston@easynet.co.uk>
1855
1856 * tests/ports.test: tests for NUL and non-ASCII chars to fports.
1857
1858 1999-08-12 Gary Houston <ghouston@easynet.co.uk>
1859
1860 * tests/ports.test: lseek -> seek.
1861
1862 1999-08-04 Gary Houston <ghouston@easynet.co.uk>
1863
1864 * tests/ports.test: tests for buffered and unbuffered input/output
1865 fports with seeking.
1866
1867 1999-08-01 Jim Blandy <jimb@savonarola.red-bean.com>
1868
1869 * tests/r4rs.test (SECTION 3 4): Each element of type-matrix
1870 corresponds to an example object, not a predicate. Aubrey
1871 probably never noticed this because SCM doesn't check the lengths
1872 of the arguments to for-each and map...
1873
1874 * tests/ports.test: Add some regression tests for char-ready?.
1875
1876 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
1877
1878 * tests/ports.test: Fix copyright years.
1879
1880 * tests/guardians.test: New test file.
1881
1882 * tests/ports.test ("read-delimited!"): New tests.
1883
1884 1999-06-19 Jim Blandy <jimb@savonarola.red-bean.com>
1885
1886 * tests/interp.test: New file.
1887
1888 1999-06-15 Jim Blandy <jimb@savonarola.red-bean.com>
1889
1890 * tests/time.test: New test file.
1891
1892 * tests/r4rs.test: New set of tests, taken from Guile's test
1893 script, taken from SCM.
1894
1895 * tests/ports.test: Group the string port tests under a new
1896 test name prefix.
1897
1898 * tests/ports.test ("line counter"): Check the final column, too.
1899
1900 * lib.scm: Import (test-suite paths).
1901 (data-file): New exported function.
1902
1903 1999-06-12 Jim Blandy <jimb@savonarola.red-bean.com>
1904
1905 * tests/ports.test ("line counter"): Add test for correct column
1906 at EOF.
1907
1908 1999-06-09 Jim Blandy <jimb@savonarola.red-bean.com>
1909
1910 * tests/ports.test ("line counter"): Verify that we do eventually
1911 get EOF on the port --- don't just read forever.
1912
1913 * lib.scm (full-reporter): The test name is the cadr of the
1914 result, not the cdr. I'm not macho enough to handle run-time
1915 typechecking.
1916
1917 * lib.scm (print-counts): XFAILS are "expected failures", not
1918 "unexpected failures."
1919
1920 * lib.scm, guile-test, paths.scm: Log begins.
1921