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