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