Mercurial > hg > xemacs-beta
annotate tests/ChangeLog @ 4686:cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
lisp/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* byte-optimize.el (byte-optimize-form-code-walker):
Be careful about discarding multiple values when optimising
#'prog1 calls.
(byte-optimize-or):
Preserve any trailing nil, as this is a supported way to
explicitly discard multiple values.
(byte-optimize-cond-1):
Discard multiple values with a singleton followed by no more
clauses.
* bytecomp.el (progn):
(prog1):
(prog2):
Be careful about discarding multiple values in the byte-hunk
handler of these three forms.
* bytecomp.el (byte-compile-prog1, byte-compile-prog2):
Don't call #'values explicitly, use `(or ,(pop form) nil) instead,
since that compiles to bytecode, not a funcall.
* bytecomp.el (byte-compile-values):
With one non-const argument, byte-compile to `(or ,(second form)
nil), not an explicit #'values call.
* bytecomp.el (byte-compile-insert-header):
Be nicer in the error message to emacs versions that don't
understand our bytecode.
src/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* eval.c (For, Fand):
Don't declare val as REGISTER in these functions, for some reason
it breaks the non-DEBUG union build. These functions are only
called from interpreted code, the performance implication doesn't
matter. Thank you Robert Delius Royar!
* eval.c (Fmultiple_value_list_internal):
Error on too many arguments.
tests/ChangeLog addition:
2009-08-31 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el (Assert-rounding):
Remove an overly-verbose failure message here.
Correct a couple of tests which were buggy in themselves. Add
three new tests, checking the behaviour of #'or and #'and when
passed zero arguments, and a Known-Bug-Expect-Failure call
involving letf and values. (The bug predates the C-level
multiple-value implementation.)
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 06 Sep 2009 19:36:02 +0100 |
parents | 945247a8112f |
children | 7e54adf407a1 |
rev | line source |
---|---|
4685
945247a8112f
Reproducer for menubar-x.c crash.
Jerry James <james@xemacs.org>
parents:
4679
diff
changeset
|
1 2009-09-02 Jerry James <james@xemacs.org> |
945247a8112f
Reproducer for menubar-x.c crash.
Jerry James <james@xemacs.org>
parents:
4679
diff
changeset
|
2 |
945247a8112f
Reproducer for menubar-x.c crash.
Jerry James <james@xemacs.org>
parents:
4679
diff
changeset
|
3 * reproduce-crashes.el (12): New bug. |
945247a8112f
Reproducer for menubar-x.c crash.
Jerry James <james@xemacs.org>
parents:
4679
diff
changeset
|
4 |
4686
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
5 2009-08-31 Aidan Kehoe <kehoea@parhasard.net> |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
6 |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
7 * automated/lisp-tests.el (Assert-rounding): |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
8 Remove an overly-verbose failure message here. |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
9 Correct a couple of tests which were buggy in themselves. Add |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
10 three new tests, checking the behaviour of #'or and #'and when |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
11 passed zero arguments, and a Known-Bug-Expect-Failure call |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
12 involving letf and values. (The bug predates the C-level |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
13 multiple-value implementation.) |
cdabd56ce1b5
Fix various small issues with the multiple-value implementation.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4685
diff
changeset
|
14 |
4679
2c64d2bbb316
Test the multiple-value functionality.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4678
diff
changeset
|
15 2009-08-16 Aidan Kehoe <kehoea@parhasard.net> |
2c64d2bbb316
Test the multiple-value functionality.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4678
diff
changeset
|
16 |
2c64d2bbb316
Test the multiple-value functionality.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4678
diff
changeset
|
17 * automated/lisp-tests.el (foo): |
2c64d2bbb316
Test the multiple-value functionality.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4678
diff
changeset
|
18 Test the Common Lisp-compatibile multiple value functionality. |
2c64d2bbb316
Test the multiple-value functionality.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4678
diff
changeset
|
19 |
4678
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
20 2009-08-11 Aidan Kehoe <kehoea@parhasard.net> |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
21 |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
22 * automated/lisp-tests.el: |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
23 Test the new Common Lisp-compatible rounding functions available in |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
24 C. |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
25 (generate-rounding-output): Provide a function useful for |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
26 generating the data for the rounding functions tests. |
b5e1d4f6b66f
Make #'floor, #'ceiling, #'round, #'truncate conform to Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4672
diff
changeset
|
27 |
4672
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
28 2009-08-10 Aidan Kehoe <kehoea@parhasard.net> |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
29 |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
30 * automated/mule-tests.el: |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
31 Revert to the original language environment once we've tested all |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
32 the others, preventing things like a Chinese terminal coding |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
33 system being selected when you actually have a UTF-8 tty. |
938ffa3ffe4d
Revert to original language environment, tests/automated/mule-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4650
diff
changeset
|
34 |
4650
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
35 2009-07-13 Aidan Kehoe <kehoea@parhasard.net> |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
36 |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
37 * automated/mule-tests.el: |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
38 Now that find-file on a nonexistent path gives a modified buffer, |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
39 we want to set this kind of buffer to be non-modified here before |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
40 killing it. |
8905163c49c5
#'find-file: set b-f-c-s even on error (cf. non-existent files),
Aidan Kehoe <kehoea@parhasard.net>
parents:
4647
diff
changeset
|
41 |
4647
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
42 2009-07-11 Aidan Kehoe <kehoea@parhasard.net> |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
43 |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
44 * automated/mule-tests.el: |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
45 Check for Richard Zidlicky's bug of |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
46 http://mid.gmane.org/20090602194123.GA5163@linux-m68k.org; also |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
47 check that supplying CODESYS to #'find-file is respected both for |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
48 nonexistent files and zero-length existing files. |
e4ed58cb0e5b
Fix bugs with #'find-file, 0-length files, & coding-system-for-read specified.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4636
diff
changeset
|
49 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4623
diff
changeset
|
50 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4623
diff
changeset
|
51 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4623
diff
changeset
|
52 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4623
diff
changeset
|
53 |
4623
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
54 2009-02-22 Aidan Kehoe <kehoea@parhasard.net> |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
55 |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
56 * automated/mule-tests.el: |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
57 Use more realistic tests for the escape-quoted mule encoding |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
58 checks; update a comment, change a Known-Bug-Expect-Failure to a |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
59 normal test now that we've addressed an old bug. |
a9f83990e6bf
Fix a byte compiler bug with characters above ?\xFF.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4622
diff
changeset
|
60 |
4622
8cbca852bcd4
#'check-coding-systems-region: return nil on success, not t.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4620
diff
changeset
|
61 2009-02-18 Aidan Kehoe <kehoea@parhasard.net> |
8cbca852bcd4
#'check-coding-systems-region: return nil on success, not t.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4620
diff
changeset
|
62 |
8cbca852bcd4
#'check-coding-systems-region: return nil on success, not t.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4620
diff
changeset
|
63 * automated/query-coding-tests.el : Check that |
8cbca852bcd4
#'check-coding-systems-region: return nil on success, not t.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4620
diff
changeset
|
64 #'check-coding-systems-region returns null on success here, not t. |
8cbca852bcd4
#'check-coding-systems-region: return nil on success, not t.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4620
diff
changeset
|
65 |
4620
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
66 2009-02-17 Aidan Kehoe <kehoea@parhasard.net> |
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
67 |
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
68 * automated/mule-tests.el (featurep): |
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
69 Add a missing parenthesis here, thank you |
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
70 Stephen. Cf. http://mid.gmane.org/871vtzrxey.fsf@xemacs.org . |
4dc42d1fe684
Make the majority of tests in tests/automated/mule-tests.el work again.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4608
diff
changeset
|
71 |
4608
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
72 2009-02-10 Aidan Kehoe <kehoea@parhasard.net> |
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
73 |
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
74 * automated/lisp-tests.el : |
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
75 Check that #$ is not modifiable from Lisp, and that load-file-name |
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
76 is modifiable from Lisp. |
1e3cf11fa27d
Make #$ truly read-only for Lisp; check this in the test suite.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
77 |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
78 2009-02-07 Aidan Kehoe <kehoea@parhasard.net> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
79 |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
80 * automated/query-coding-tests.el: |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
81 Add FAILING-CASE arguments to the Assert calls, making #'q-c-debug |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
82 mostly unnecessary. Remove #'q-c-debug. |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
83 Add new tests that use the IGNORE-INVALID-SEQUENCESP argument to |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
84 #'query-coding-region; rework the existing ones to respect it. |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4583
diff
changeset
|
85 |
4583
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4582
diff
changeset
|
86 2009-01-31 Aidan Kehoe <kehoea@parhasard.net> |
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4582
diff
changeset
|
87 |
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4582
diff
changeset
|
88 * automated/mule-tests.el: |
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4582
diff
changeset
|
89 Test little-endian Unicode surrogates too. |
2669b1b7e33b
Correct little-endian UTF-16 surrogate handling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4582
diff
changeset
|
90 |
4582
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
91 2009-01-18 Aidan Kehoe <kehoea@parhasard.net> |
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
92 |
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
93 * automated/lisp-tests.el: (char-table-with-string): |
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
94 That was remiss of me, I should have checked before commiting that |
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
95 last changed. Fixed, the char tables are now actually printed. |
00ed9903a988
Fix make check after my last change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4580
diff
changeset
|
96 |
4580
1d11ecca9cd0
Print char table values correctly.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4575
diff
changeset
|
97 2009-01-18 Aidan Kehoe <kehoea@parhasard.net> |
1d11ecca9cd0
Print char table values correctly.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4575
diff
changeset
|
98 |
1d11ecca9cd0
Print char table values correctly.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4575
diff
changeset
|
99 * automated/lisp-tests.el: |
1d11ecca9cd0
Print char table values correctly.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4575
diff
changeset
|
100 Check that a bug I fixed in char table printing is really gone. |
1d11ecca9cd0
Print char table values correctly.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4575
diff
changeset
|
101 |
4575
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4573
diff
changeset
|
102 2009-01-11 Aidan Kehoe <kehoea@parhasard.net> |
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4573
diff
changeset
|
103 |
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4573
diff
changeset
|
104 * automated/lisp-tests.el (): |
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4573
diff
changeset
|
105 Test #'subr-arity, recently added to subr.el. |
eecd28508f4a
Add #'subr-arity, API taken from GNU, implementation our own.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4573
diff
changeset
|
106 |
4573
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
107 2009-01-03 Aidan Kehoe <kehoea@parhasard.net> |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
108 |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
109 * automated/ccl-tests.el (ccl-test-setup): |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
110 Use sane CCL programs for decoding and encoding with the test CCL |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
111 coding system by default. Correct a spelling in the docstring, add |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
112 a safe-chars property so that we don't confuse |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
113 query-coding-tests.el. |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
114 (ccl-test-suites): |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
115 Explicitly re-initialise the CCL programs for the test coding |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
116 system once finished. |
baf6c66f6f47
Correct the CCL programs used by the coding system in ccl-tests.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4570
diff
changeset
|
117 |
4570
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
118 2008-12-28 Aidan Kehoe <kehoea@parhasard.net> |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
119 |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
120 * automated/query-coding-tests.el: |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
121 Add tests for #'unencodable-char-position, |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
122 #'check-coding-systems-region, #'encode-coding-char. Remove some |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
123 debugging statements. |
e6a7054a9c30
Add check-coding-systems-region, test it and others, fix some bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4569
diff
changeset
|
124 |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
125 2008-12-28 Aidan Kehoe <kehoea@parhasard.net> |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
126 |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
127 * automated/query-coding-tests.el: |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
128 New file, testing the functionality of #'query-coding-region and |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
129 #'query-coding-string. |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
130 |
4518
e0a8c796f955
Add test for at_dot regexp.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4517
diff
changeset
|
131 2008-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
e0a8c796f955
Add test for at_dot regexp.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4517
diff
changeset
|
132 |
e0a8c796f955
Add test for at_dot regexp.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4517
diff
changeset
|
133 * automated/regexp-tests.el: Add test for at_dot regexp. |
e0a8c796f955
Add test for at_dot regexp.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4517
diff
changeset
|
134 |
4517
5e8f6469169f
Fix up initial condition for skip-chars test.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
135 2008-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
5e8f6469169f
Fix up initial condition for skip-chars test.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
136 |
5e8f6469169f
Fix up initial condition for skip-chars test.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
137 * automated/regexp-tests.el: `with-string-as-buffer-contents' |
5e8f6469169f
Fix up initial condition for skip-chars test.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
138 leaves point at end of buffer, so must move point to beginning. |
5e8f6469169f
Fix up initial condition for skip-chars test.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4504
diff
changeset
|
139 |
4504
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
140 2008-08-27 Aidan Kehoe <kehoea@parhasard.net> |
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
141 |
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
142 * automated/regexp-tests.el: |
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
143 Add a few basic #'skip-chars-forward, #'skip-chars-backward |
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
144 tests. |
b82fdf7305ee
Correct the implementation, add a few basic tests for #'skip-chars-quote.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4495
diff
changeset
|
145 |
4495
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
146 2008-08-10 Aidan Kehoe <kehoea@parhasard.net> |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
147 |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
148 * automated/mule-tests.el (featurep): Update the list of character |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
149 sets in etc/HELLO to reflect that we've deleted the |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
150 XEmacs-specific Arabic character sets. |
c95c06ee1e9d
Correct a test failure now the XEmacs-specific Arabic charsets are gone.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4465
diff
changeset
|
151 |
4465
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
152 2008-05-21 Aidan Kehoe <kehoea@parhasard.net> |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
153 |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
154 * automated/mule-tests.el (featurep): |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
155 Make sure that working symlinks are available before testing |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
156 their functionality. |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
157 Also, don't bomb out on deleting the other temporary files if |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
158 deleting the first threw an error. |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4423
diff
changeset
|
159 |
4423
1982c8c55632
Correct and extend the previous test, thank you Stephen.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4421
diff
changeset
|
160 2008-02-14 Aidan Kehoe <kehoea@parhasard.net> |
1982c8c55632
Correct and extend the previous test, thank you Stephen.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4421
diff
changeset
|
161 |
1982c8c55632
Correct and extend the previous test, thank you Stephen.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4421
diff
changeset
|
162 * automated/case-tests.el (let): |
1982c8c55632
Correct and extend the previous test, thank you Stephen.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4421
diff
changeset
|
163 Correct and extend the previous test, thank you Stephen. |
1982c8c55632
Correct and extend the previous test, thank you Stephen.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4421
diff
changeset
|
164 |
4421
69b803c646cd
Fail searches immediately if searching for non-representable characters.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4415
diff
changeset
|
165 2008-02-11 Aidan Kehoe <kehoea@parhasard.net> |
69b803c646cd
Fail searches immediately if searching for non-representable characters.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4415
diff
changeset
|
166 |
69b803c646cd
Fail searches immediately if searching for non-representable characters.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4415
diff
changeset
|
167 * automated/case-tests.el (Assert): |
69b803c646cd
Fail searches immediately if searching for non-representable characters.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4415
diff
changeset
|
168 New test case; thank you Michael Sperber. |
69b803c646cd
Fail searches immediately if searching for non-representable characters.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4415
diff
changeset
|
169 |
4415
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
170 2008-01-30 Aidan Kehoe <kehoea@parhasard.net> |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
171 |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
172 * automated/case-tests.el (pristine-case-table): |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
173 New var, reflecting the standard case table before case-table.el |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
174 messes with it. |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
175 * automated/case-tests.el: |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
176 Call Skip-Test-Unless correctly, following Vin's report of |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
177 20a807210801300635v7533d26rdb32a8d82fb4239b@mail.gmail.com . |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
178 Use pristine-case-table, add in a couple more tests. |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
179 * automated/test-harness.el (test-harness-from-buffer): |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
180 Update the error message in the light of tests skipped for other |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
181 reasons (not to do with absent packages). In this case, because |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
182 we're exposing diagnostics in a DEBUG_XEMACS build that are no |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
183 appropriate to expose to non-DEBUG_XEMACS builds. |
bceb3e285ae7
case-tests.el: fix it on non-DEBUG_XEMACS; save standard-case-table, use it
Aidan Kehoe <kehoea@parhasard.net>
parents:
4414
diff
changeset
|
184 |
4414
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
185 2008-01-30 Aidan Kehoe <kehoea@parhasard.net> |
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
186 |
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
187 * automated/case-tests.el: |
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
188 Check for a bug Mike Sperber reported; check algorithms used, if |
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
189 available. |
df576f30c1d8
Correct case-insensitive search for non-case, non-ASCII chars. Add tests.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4399
diff
changeset
|
190 |
4399
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
191 2008-01-16 Aidan Kehoe <kehoea@parhasard.net> |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
192 |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
193 * automated/mule-tests.el (test-file-name): |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
194 Call #'make-temp-file now it's available. Remove a long comment |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
195 saying, essentially, that it should be used, not |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
196 #'make-temp-name. |
e5b3c4dbc8a2
Call #'make-temp-file in mule-tests.el, now it's available.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4398
diff
changeset
|
197 |
4398
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
198 2008-01-16 Aidan Kehoe <kehoea@parhasard.net> |
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
199 |
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
200 * automated/hash-table-tests.el: |
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
201 Assert that two short lists with the same contents in distinct |
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
202 orders hash differently. |
479443c0f95a
Have list hashes depend on the order of the contents, as is the case for vectors.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4396
diff
changeset
|
203 |
4396
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
204 2008-01-15 Aidan Kehoe <kehoea@parhasard.net> |
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
205 |
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
206 * automated/lisp-tests.el (literal-with-uninterned): |
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
207 Use ?\x syntax for Latin-1 characters, don't assume that the file |
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
208 will be read as UTF-8. |
e97f16fb2e25
Don't assume lisp-tests.el will be correctly read as UTF-8.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4394
diff
changeset
|
209 |
4394
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
210 2008-01-15 Aidan Kehoe <kehoea@parhasard.net> |
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
211 |
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
212 * automated/lisp-tests.el (thing): |
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
213 Check that printing a hash table literal doesn't clear |
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
214 print-gensym-alist. |
cacc942c0d0f
Avoid clearing print-gensym-alist inappropriately when printing hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4381
diff
changeset
|
215 |
4381
3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4366
diff
changeset
|
216 2008-01-03 Stephen J. Turnbull <stephen@xemacs.org> |
3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4366
diff
changeset
|
217 |
3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4366
diff
changeset
|
218 * automated/symbol-tests.el (Symbol documentation): Add tests to |
3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4366
diff
changeset
|
219 check documentation extraction. |
3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4366
diff
changeset
|
220 |
4366
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
221 2007-12-29 Stephen J. Turnbull <stephen@xemacs.org> |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
222 |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
223 * automated/test-harness.el (test-harness-test-compiled): |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
224 Improve docstring. |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
225 |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
226 * automated/weak-tests.el (test-harness-test-compiled): |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
227 Remove debugging code. |
7b628daa39d4
Move debugging code to usage example.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4346
diff
changeset
|
228 |
4346
ec1103d2c1c7
Refactor and rename reproduce-bugs.el to reproduce-crashes.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4344
diff
changeset
|
229 2007-12-21 Stephen J. Turnbull <stephen@xemacs.org> |
ec1103d2c1c7
Refactor and rename reproduce-bugs.el to reproduce-crashes.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4344
diff
changeset
|
230 |
ec1103d2c1c7
Refactor and rename reproduce-bugs.el to reproduce-crashes.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4344
diff
changeset
|
231 * reproduce-crashes.el: Renamed from reproduce-bugs.el. Update to-do. |
ec1103d2c1c7
Refactor and rename reproduce-bugs.el to reproduce-crashes.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4344
diff
changeset
|
232 |
4344
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
233 2007-12-21 Stephen J. Turnbull <stephen@xemacs.org> |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
234 |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
235 * reproduce-bugs.el: Reorganize. Minor cosmetic improvements. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
236 Update to-do list. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
237 (defbug): Include status and docstring in value. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
238 (bug-hashtable): Document the table format. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
239 (reproduce-bug): Handle revised table format. Remove broken |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
240 autoload cookie. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
241 (describe-bug): New function. Pop up description of one bug. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
242 (list-bugs): New function. Pop up brief descriptions of all bugs. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
243 (1,2,3,4,5,6,7,8,9,10,11): (Re)number all bugs. Move comments to |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
244 docstrings. |
2511b50f39c6
Refactor reproduce-bugs.el to usable state.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4324
diff
changeset
|
245 |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
246 2007-12-11 Aidan Kehoe <kehoea@parhasard.net> |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
247 |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
248 * automated/syntax-tests.el: |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
249 Check that substitute-in-file-name doesn't error when handed |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
250 non-existing environment variables, passing through the specified |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
251 string instead. Also check that existing environment variables are |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
252 correctly substituted. Also check that double slashes in the |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
253 middle of a path name are treated as re-starting the path. |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4322
diff
changeset
|
254 |
4322
f70e56bb52a7
src/search.c (simple_search): Fix underrun in reverse search.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4321
diff
changeset
|
255 2007-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
f70e56bb52a7
src/search.c (simple_search): Fix underrun in reverse search.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4321
diff
changeset
|
256 |
f70e56bb52a7
src/search.c (simple_search): Fix underrun in reverse search.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4321
diff
changeset
|
257 * reproduce-bugs.el (reproduce-bug): Add bug 10, crash in search. |
f70e56bb52a7
src/search.c (simple_search): Fix underrun in reverse search.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4321
diff
changeset
|
258 |
4321
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
259 2007-12-10 Stephen J. Turnbull <stephen@xemacs.org> |
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
260 |
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
261 * reproduce-bugs.el: Add some commentary. |
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
262 Number the two unnumbered bugs. |
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
263 Comment out the keybinding. |
98e54edf3ab2
Resuscitate reproduce-bugs.el.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4318
diff
changeset
|
264 |
4318
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
265 2007-12-06 Aidan Kehoe <kehoea@parhasard.net> |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
266 |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
267 * automated/mule-tests.el: |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
268 Add a Known-Bug-Expect-Error call testing and documenting that we |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
269 don't support all of the Unicode code space in a single session. |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
270 * automated/test-harness.el (Known-Bug-Expect-Error): |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
271 Provide Known-Bug-Expect-Error, analagous to |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
272 Known-Bug-Expect-Failure and Check-Error. |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
273 * automated/test-harness.el (Silence-Message): |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
274 Dynamically bind the function definition of #'clear-message, as |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
275 well as that of #'append-message, to nil. |
4d0f773d5e21
Fix the test failures introduced by the non-ISO-2022 coding systems.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4305
diff
changeset
|
276 |
4305 | 277 2007-12-04 Aidan Kehoe <kehoea@parhasard.net> |
278 | |
279 * automated/mule-tests.el (featurep): | |
280 The native coding system specified in the language environment can | |
281 be either a list (which we used to handle fine) or a single coding | |
282 system expression (which we failed on). Handle the latter case. | |
283 | |
4295 | 284 2007-11-29 Aidan Kehoe <kehoea@parhasard.net> |
285 | |
286 * automated/mule-tests.el: | |
287 Check the eight-bit fixed-width CCL coding systems for round-trip | |
288 compatibility with themselves. | |
289 | |
4287 | 290 2007-11-26 Aidan Kehoe <kehoea@parhasard.net> |
291 | |
292 * automated/lisp-tests.el: | |
293 Check that a couple of previously problematic calls to #'format | |
294 succeed. | |
295 | |
4199 | 296 2007-09-30 Stephen J. Turnbull <stephen@xemacs.org> |
297 | |
298 * automated/os-tests.el: Suppress `executable-find' lossage. | |
299 | |
300 * automated/regexp-tests.el (replace-regexp-in-string): | |
301 New tests for error conditions. | |
302 | |
303 * automated/test-harness.el (test-harness-from-buffer): Comment | |
304 about inability to check the FROB in invalid_argument. | |
305 | |
306 2007-09-23 Stephen J. Turnbull <stephen@xemacs.org> | |
307 | |
308 * automated/regexp-tests.el (replace-regexp-in-string): | |
309 New tests for correct operation. Comment need for `replace-match' | |
310 tests. | |
311 | |
4133 | 312 2007-08-21 Aidan Kehoe <kehoea@parhasard.net> |
313 | |
314 * automated/mule-tests.el (test-chars): | |
315 There are now 2^21 possible characters under Mule, not 2^19. | |
316 * automated/mule-tests.el (test-file-name): | |
317 Call #'make-temp-name instead of writing the file needed for the | |
318 rever-buffer test to the user's home directory. Wrap the following | |
319 #'save-buffer in a Silence-Message call. | |
320 * automated/mule-tests.el: | |
321 In the language environment tests, check that a given input method | |
322 exists before trying to activate it. If there are installed input | |
323 methods, assert that every input method specified in any language | |
324 environment exists. If the native-coding-system of the language | |
325 environment is specified as a function, don't assert that it is a | |
326 coding system. | |
327 | |
328 In the byte-compiler coding cookie tests, call #'read at runtime | |
329 on strings with non-Latin-1 Unicode escapes. This avoids errors | |
330 when make check is run under a non-Mule XEmacs, where unavailable | |
331 Unicode escapes throw an error in the Lisp reader. | |
332 | |
333 Add a new Known-Bug-Expect-Failure call for a bug that occurred to | |
334 me yesterday; if non-Latin-1 is generated in an eval-when-compile | |
335 clause, that non-ASCII may be trashed and the compiled code | |
336 incorrectly saved as no-conversion if no other non-Latin-1 exists | |
337 in the input buffer. Add a comment giving more details of the bug | |
338 and how one might fix it. | |
339 | |
4026 | 340 2007-06-22 Stephen J. Turnbull <stephen@xemacs.org> |
341 | |
342 * automated/mule-tests.el (buffer-modified-p): Test after revert. | |
343 | |
4021 | 344 2007-06-21 Aidan Kehoe <kehoea@parhasard.net> |
345 | |
346 * gtk/event-stream-tests.el (timer-check): | |
347 '(lambda ...) -> #'(lambda ..), for the sake of style and the byte | |
348 compiler. | |
349 | |
350 2007-06-21 Aidan Kehoe <kehoea@parhasard.net> | |
351 | |
352 * automated/weak-tests.el (p): | |
353 * automated/weak-tests.el (inner_cons): | |
354 '(lambda ...) -> #'(lambda ..), for the sake of style and the byte | |
355 compiler. | |
356 | |
3975 | 357 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
358 | |
359 * XEmacs 21.5.28 "fuki" is released. | |
360 | |
3970 | 361 2007-05-20 Aidan Kehoe <kehoea@parhasard.net> |
362 | |
363 * automated/mule-tests.el: | |
364 Make the file name coding system tests work on OS X. | |
365 Check various slots of the language environment structure to make | |
366 sure they're well formed--we've been shipping without a Turkish or | |
367 Latin-10 input method for years, for example, which is an error. | |
368 | |
3952 | 369 2007-04-30 Aidan Kehoe <kehoea@parhasard.net> |
370 | |
371 * automated/mule-tests.el (featurep): | |
372 Minimal tests of the non-BMP UTF-16 support. | |
373 | |
3948 | 374 2007-05-12 Aidan Kehoe <kehoea@parhasard.net> |
375 | |
376 * automated/mule-tests.el: | |
377 * automated/mule-tests.el (bytecomp): | |
378 Require it, since we're testing its Unicode support. | |
379 * automated/mule-tests.el (featurep): | |
380 Assert that the escape-quoted coding cookie is added when needed, | |
381 and ignored when not. | |
382 | |
3927 | 383 2007-04-29 Aidan Kehoe <kehoea@parhasard.net> |
384 | |
385 * automated/mule-tests.el (featurep): | |
386 Sort the results of charsets-in-region, charsets-in-string before | |
387 comparing them to the previously-determined list of character | |
388 sets. Eliminates a dependency on the algorithm | |
389 charsets-in-{region,string} uses. | |
390 | |
3880 | 391 2007-03-26 Stephen J. Turnbull <stephen@xemacs.org> |
392 | |
393 * automated/syntax-tests.el: Test for regression of bug fixed by | |
394 Olivier Galibert <20070324221053.GA48218@dspnet.fr.eu.org>. Test | |
395 by Ralf Angeli http://article.gmane.org/gmane.emacs.xemacs.beta/17353. | |
396 | |
3701 | 397 2006-11-25 Aidan Kehoe <kehoea@parhasard.net> |
398 | |
399 * automated/iso-ir-196-test.el: | |
400 * automated/mule-tests.el (featurep): | |
401 Move the tested added in the previous commit to a separate file. | |
402 | |
3695 | 403 2006-11-23 Aidan Kehoe <kehoea@parhasard.net> |
404 | |
405 * automated/mule-tests.el (featurep): | |
406 Add a test that ISO/IR 196 escape handling in ISO-2022-based | |
407 charsets don't choke on invalid bytes in UTF-8 text. | |
408 | |
3690 | 409 2006-11-20 Aidan Kehoe <kehoea@parhasard.net> |
410 | |
411 * automated/mule-tests.el (featurep): | |
412 Add tests to make sure the fixes to the CCL bugs I just checked in | |
413 don't regress. | |
414 | |
3543 | 415 2006-08-05 Aidan Kehoe <kehoea@parhasard.net> |
416 | |
417 * automated/lisp-reader-tests.el: | |
418 New file, imported from Martin Kuehl's SXEmacs commit; test the | |
419 new raw string syntax, including the Unicode escapes, which | |
420 SXEmacs doesn't have. | |
421 | |
3472 | 422 2006-06-24 Stephen J. Turnbull <stephen@xemacs.org> |
423 | |
424 * automated/test-harness.el (Silence-Message): New macro. | |
425 * automated/mule-tests.el: Use it. | |
426 * automated/region-tests.el: Use it. | |
427 * automated/tag-tests.el: Use it. | |
428 | |
3471 | 429 2006-06-24 Stephen J. Turnbull <stephen@xemacs.org> |
430 | |
431 * automated/test-harness.el: Improve handling of unexpected errors. | |
432 | |
3439 | 433 2006-06-03 Aidan Kehoe <kehoea@parhasard.net> |
434 | |
435 * automated/mule-tests.el: | |
436 Add checks that several Unicode characters, expressed as | |
437 UTF-8-encoded strings, are handled correctly by the UTF-8 support | |
438 of the escape-quoted character set. | |
439 * automated/mule-tests.el (unicode-code-point-to-utf-8-string): New. | |
440 Convert a Unicode code point to the equivalent UTF-8 string. | |
441 This is a naive implementation in Lisp. | |
442 | |
3402 | 443 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
444 | |
445 * XEmacs 21.5.27 "fiddleheads" is released. | |
446 | |
3323 | 447 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
448 | |
449 * XEmacs 21.5.26 "endive" is released. | |
450 | |
3259 | 451 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
452 | |
453 * XEmacs 21.5.25 "eggplant" is released. | |
454 | |
3150 | 455 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
456 | |
457 * XEmacs 21.5.24 "dandelion" is released. | |
458 | |
3130 | 459 2005-12-08 Stephen J. Turnbull <stephen@xemacs.org> |
460 | |
461 * automated/syntax-tests.el (backward-up-list): New test. | |
462 Thanks to Zacjev Evgeny for report, Aidan Kehoe for reproduction. | |
463 | |
3031 | 464 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
465 | |
466 * XEmacs 21.5.23 "daikon" is released. | |
467 | |
2931 | 468 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
469 | |
470 * XEmacs 21.5.22 "cucumber" is released. | |
471 | |
2791 | 472 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
473 | |
474 * XEmacs 21.5.21 "corn" is released. | |
475 | |
2653 | 476 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
477 | |
478 * XEmacs 21.5.20 "cilantro" is released. | |
479 | |
2614 | 480 2005-02-25 Adrian Aichner <adrian@xemacs.org> |
481 | |
482 * automated/region-tests.el: Test regions and zmacs-regions. | |
483 | |
2594 | 484 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
485 | |
486 * XEmacs 21.5.19 "chives" is released. | |
487 | |
2542 | 488 2005-02-01 Vin Shelton <acs@xemacs.org> |
489 | |
490 * automated/regexp-tests.el: Added test for stale match data with | |
491 shy groups authored by Arnaud Giersch <arnaud.giersch@free.fr> | |
492 | |
493 2005-01-13 Stephen J. Turnbull <stephen@xemacs.org> | |
494 | |
495 * automated/regexp-tests.el: | |
496 Test trivial subpatterns and backreferences with shy groups. | |
497 | |
2661 | 498 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> |
499 | |
500 * autoconf/regressiontest.pl: Added explict test for '--with-athena=3d' | |
501 | |
502 2005-01-30 Stephen J. Turnbull <stephen@xemacs.org> | |
503 | |
504 * autoconf/regressiontest.pl: Basename of configure need not be | |
505 "configure" and arguments differ. HAVE_DECL_SYS_SIGLIST | |
506 differences are known spurious. Delete those lines before diff. | |
507 Add my standard configure line to test hash. | |
508 Add usage notes. | |
509 | |
510 2005-01-29 Stephen J. Turnbull <stephen@xemacs.org> | |
511 | |
512 * autoconf: New directory for tests for configure. | |
513 * autoconf/regressiontest.pl: New file from Malcolm Purvis. | |
514 | |
2668 | 515 2004-10-28 Stephen J. Turnbull <stephen@xemacs.org> |
2356 | 516 |
517 * automated/os-tests.el: New file. Add tests for bug reported by | |
518 Katsumi Yamaoka 2004-10-26 <b9yvfcyuscf.fsf@jpl.org>. Test | |
519 suggested by Katsumi Yamaoka <b9yoeipvwn0.fsf@jpl.org>. | |
520 | |
2346 | 521 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
522 | |
523 * XEmacs 21.5.18 "chestnut" is released. | |
524 | |
2324 | 525 2004-10-07 Stephen J. Turnbull <stephen@xemacs.org> |
526 | |
2356 | 527 * automated/regexp-tests.el: Add tests for bug identified by Steve |
528 Youngs 2004-09-30 <microsoft-free.87ekkjhj7t.fsf@youngs.au.com>. | |
2324 | 529 |
2254 | 530 2004-09-08 Stephen J. Turnbull <stephen@xemacs.org> |
531 | |
532 * automated/regexp-tests.el: Add tests for bug identified by | |
533 Katsumi Yamaoka 2004-09-03 <b9ywtzbbpue.fsf_-_@jpl.org>. | |
534 | |
2076 | 535 2004-05-14 Stephen J. Turnbull <stephen@xemacs.org> |
536 | |
537 * automated/tag-tests.el (first form): Put non-ASCII chars back. | |
538 | |
2075 | 539 2004-05-13 Jerry James <james@xemacs.org> |
540 | |
541 * automated/lisp-tests:el: Another test fix because | |
542 (eq most-negative-fixnum (- most-negative-fixnum)). | |
543 | |
2073 | 544 2004-05-11 Vin Shelton <acs@xemacs.org> |
545 | |
546 * automated/tag-test.el: Use a temp directory to avoid conflicts | |
547 with extra TAGS files. | |
548 | |
2071 | 549 2004-05-08 Vin Shelton <acs@xemacs.org> |
550 | |
551 * automated/tag-test.el: Created. | |
552 | |
2056 | 553 2004-04-21 Jerry James <james@xemacs.org> |
554 | |
555 * automated/test-harness.el (Assert): Add an optional failing-case | |
556 arg so we can see what the test was trying to do when it failed. | |
557 * automated/lisp-tests.el: Use the failing-case arg for Asserts | |
558 with variables. Use eql on tests that might produce bignums. Fix | |
559 test for non-bignum XEmacsen that fails because | |
560 (eq most-negative-fixnum (- most-negative-fixnum)). | |
561 | |
2026 | 562 2004-04-19 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
563 | |
564 * automated/mule-tests.el: Inhibit GC to speed up BIG_STRING tests. | |
565 | |
566 2004-04-19 Stephen J. Turnbull <stephen@xemacs.org> | |
567 | |
568 * automated/mule-tests.el: Darwin doesn't like ISO 8859/2 filenames. | |
569 | |
1983 | 570 2004-04-05 Jerry James <james@xemacs.org> |
571 | |
572 * automated/lisp-tests.el: Add bignum and ratio tests. | |
573 | |
1964 | 574 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
575 | |
576 * XEmacs 21.5.17 "chayote" is released. | |
577 | |
1773
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
578 2003-11-01 Markus Kaltenbach <makalten@informatik.uni-tuebingen.de> |
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
579 |
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
580 * automated/weak-tests.el: |
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
581 Added testing of the iterative marking calls needed for processing |
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
582 weak data structures, especially ephemerons, correctly |
aa0db78e67c4
[xemacs-hg @ 2003-11-01 14:54:53 by kaltenbach]
kaltenbach
parents:
1761
diff
changeset
|
583 |
1761 | 584 2003-10-22 Vin Shelton <acs@xemacs.org> |
585 | |
586 * automated/hash-table-tests.el: Remove debugging print | |
587 statements. | |
588 | |
589 2003-10-22 Stephen J. Turnbull <stephen@xemacs.org> | |
590 | |
591 * automated/test-harness.el: List me as maintainer. | |
592 | |
1758 | 593 2003-10-21 Stephen J. Turnbull <stephen@xemacs.org> |
594 | |
595 * automated/test-harness.el (test-harness-test-compiled): | |
596 New variable to notify tests whether they are compiled or interpreted. | |
597 | |
598 * automated/weak-tests.el (test-harness-test-compiled): | |
599 Temporary hack to remind me of the reverted byte-interpreter patch. | |
600 | |
1751 | 601 2003-10-15 Stephen J. Turnbull <stephen@xemacs.org> |
602 | |
603 * automated/test-harness.el: Whitespace/readability tweaks. | |
604 (Copyright): Update. | |
605 (test-harness-file-summary-template): New constant. | |
606 (test-harness-null-summary-template): New constant. | |
607 (test-harness-from-buffer): | |
608 (batch-test-emacs): | |
609 Improve report formatting. | |
610 | |
1722 | 611 2003-09-28 Adrian Aichner <adrian@xemacs.org> |
612 | |
613 * automated/test-harness.el (batch-test-emacs): Emergency fix for | |
614 arithmetic error when no tests are run. | |
615 | |
1720 | 616 2003-09-27 Adrian Aichner <adrian@xemacs.org> |
617 | |
618 * automated/test-harness.el: Syntax emergency fix. | |
619 | |
1719 | 620 2003-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
621 | |
622 * automated/test-harness.el: Give the maintainers what they want. | |
623 | |
1717 | 624 2003-09-26 Adrian Aichner <adrian@xemacs.org> |
625 | |
626 * automated/test-harness.el (test-harness-from-buffer): Revert | |
627 logging results when running noninteractive per Stephen | |
628 J. Turnbull's veto. | |
629 | |
1716 | 630 2003-09-26 Steve Youngs <youngs@xemacs.org> |
631 | |
632 * XEmacs 21.5.16 "celeriac" is released. | |
633 | |
1714 | 634 2003-09-25 Stephen J. Turnbull <stephen@xemacs.org> |
635 | |
636 * automated/regexp-tests.el (multiple-match): Test \{m,n\}. | |
637 | |
1665 | 638 2003-09-03 Steve Youngs <youngs@xemacs.org> |
639 | |
640 * XEmacs 21.5.15 "celery" is released. | |
641 | |
1656 | 642 2003-08-31 Adrian Aichner <adrian@xemacs.org> |
643 | |
644 * automated/test-harness.el (test-harness-from-buffer): Log | |
645 results when running noninteractive. | |
646 * automated/test-harness.el (batch-test-emacs): Remove misplaced | |
647 debugging code. | |
648 | |
1636 | 649 2003-08-19 Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
650 Markus Kaltenbach <makalten@informatik.uni-tuebingen.de> | |
651 | |
652 * automated/weak-tests.el: Added tests for weak-lists. | |
653 | |
1612 | 654 2003-08-10 Stephen J. Turnbull <stephen@xemacs.org> |
655 | |
656 * automated/regexp-tests.el: Update copyright notice and | |
657 maintainer name. Improve comment on stale match tests. | |
658 | |
1510 | 659 2003-06-01 Steve Youngs <youngs@xemacs.org> |
660 | |
661 * XEmacs 21.5.14 "cassava" is released. | |
662 | |
1473 | 663 2003-05-10 Steve Youngs <youngs@xemacs.org> |
664 | |
665 * XEmacs 21.5.13 "cauliflower" is released. | |
666 | |
1472 | 667 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
668 | |
669 * automated/regexp-tests.el (replace-match): Revert test to Assert | |
670 that registers are preserved on a failed match. | |
671 (stale match data): Test for preserve-on-failure behavior. | |
672 | |
1431 | 673 2003-04-24 Steve Youngs <youngs@xemacs.org> |
674 | |
675 * XEmacs 21.5.12 "carrot" is released. | |
676 | |
1425 | 677 2003-04-23 Stephen J. Turnbull <stephen@xemacs.org> |
678 | |
679 * automated/test-harness.el (test-harness-risk-infloops): | |
680 New variable. | |
681 | |
682 * automated/lisp-tests.el (split-string): Add tests for new API | |
683 spec. Conditionally re-enable potential infloops. | |
684 | |
685 2003-04-17 Stephen J. Turnbull <stephen@xemacs.org> | |
686 | |
687 * automated/regexp-tests.el (stale match data): Update comment. | |
688 (replace-match): Check-Error after failed match. | |
689 | |
1413 | 690 2003-04-15 Stephen J. Turnbull <stephen@xemacs.org> |
691 | |
692 * automated/test-harness.el (test-harness-known-bug): Deleted. | |
693 (test-harness-failure-tag, test-harness-success-tag): New variables. | |
694 (Known-Bug-Expect-Failure): Bind them. | |
695 (Implementation-Incomplete-Expect-Failure): New macro. Bind *-tag. | |
696 (Print-Failure, Print-Pass): Use *-tag instead of literal strings. | |
697 | |
698 * automated/symbol-tests.el (weak reference uniqueness): Mike sez | |
699 tests of garbage collector are due to incomplete descriptorization | |
700 of lisp types. Tag with Implementation-Incomplete-Expect-Failure | |
701 if KKCC. | |
702 | |
703 2003-04-03 Stephen J. Turnbull <stephen@xemacs.org> | |
704 | |
705 * automated/regexp-tests.el: Change known-bug status of Mule ranges. | |
706 | |
1389 | 707 2003-03-21 Stephen J. Turnbull <stephen@xemacs.org> |
708 | |
709 * automated/regexp-tests.el: Change known-bug status of "\\b". | |
710 | |
1316 | 711 2003-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
712 | |
713 * automated/mule-tests.el (charsets-in-string): | |
714 (charsets-in-string): | |
715 Not all that glitters is gold, nor eq that which is equal. D'oh. | |
716 | |
1307 | 717 2003-02-16 Steve Youngs <youngs@xemacs.org> |
718 | |
719 * XEmacs 21.5.11 "cabbage" is released. | |
720 | |
1231 | 721 2003-01-19 Stephen J. Turnbull <stephen@xemacs.org> |
722 | |
723 * sigpipe.c: New file. Crashes 21.1 but not 21.4 or 21.5 (I | |
724 think). Thanks to Richard Mlynarik <mly@pobox.com>. | |
725 | |
726 2003-01-17 Stephen J. Turnbull <stephen@xemacs.org> | |
727 | |
728 * automated/test-harness.el (test-harness-from-buffer): Move | |
729 success rate report to end of line where it's easier to see. | |
730 | |
1195 | 731 2003-01-09 Stephen J. Turnbull <stephen@xemacs.org> |
732 | |
733 * automated/mule-tests.el: Test cases for charset-in-* functions. | |
734 | |
735 2003-01-06 Stephen J. Turnbull <stephen@xemacs.org> | |
736 | |
737 * automated/regexp-tests.el (stale match data): Stale match data | |
738 persists after failed match. Thanks to <bjacob@ca.metsci.com>. | |
739 | |
1187 | 740 2003-01-04 Steve Youngs <youngs@xemacs.org> |
741 | |
742 * XEmacs 21.5.10 "burdock" is released. | |
743 | |
1175 | 744 2002-12-27 Stephen J. Turnbull <stephen@xemacs.org> |
745 | |
746 * automated/regexp-tests.el (Mule character class): New test | |
747 cases. Based on draft patch by Daiki Ueno <daiki@xemacs.org>. | |
748 | |
749 * automated/test-harness.el (Print-Pass): Comment. | |
750 | |
751 2002-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
1095 | 752 |
753 * automated/test-harness.el (test-harness-expect-bug): New variable. | |
754 (Known-Bug-Expect-Failure): New macro. | |
755 (Skip-Test-Unless): New macro. | |
756 (Check-Message): Use Skip-Test-Unless. | |
757 (test-harness-from-buffer): Type fixes. | |
758 | |
759 * automated/regexp-tests.el: Use Known-Bug-Expect-Failure. | |
760 | |
761 * automated/syntax-tests.el: Use Skip-Test-Unless. | |
762 | |
1024 | 763 2002-09-09 Stephen J. Turnbull <stephen@xemacs.org> |
764 | |
765 * automated/regexp-tests.el: Add test for stale subexpr match-data. | |
766 Thanks to Martin Stjernholm for the report. | |
767 | |
768 * automated/syntax-tests.el: Conditionalize syntax-table property | |
769 tests on feature. Enable feature if present. | |
770 | |
771 2002-09-12 Stephen J. Turnbull <stephen@xemacs.org> | |
772 | |
773 * automated/regexp-tests.el: Add word-boundary regexp tests. | |
774 | |
981 | 775 2002-08-30 Steve Youngs <youngs@xemacs.org> |
776 | |
777 * XEmacs 21.5.9 "brussels sprouts" is released. | |
778 | |
973 | 779 2002-08-22 Stephen J. Turnbull <stephen@xemacs.org> |
780 | |
781 * automated/test-harness.el (test-harness-from-buffer): | |
782 Print-Skip: new local function. | |
783 | |
784 * automated/syntax-tests.el (forward-comment at buffer boundaries): | |
785 * automated/test-harness.el (Check-Message): | |
786 Warn, not barf, if required packages are unavailable. | |
787 | |
933 | 788 2002-07-27 Steve Youngs <youngs@xemacs.org> |
789 | |
790 * XEmacs 21.5.8 "broccoli" is released. | |
791 | |
928 | 792 2002-07-20 Mike Sperber <mike@xemacs.org> |
793 | |
794 * automated/test-harness.el (test-harness-read-from-buffer): Fix | |
795 incorrect call of `princ'. | |
796 | |
894 | 797 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
798 | |
799 * XEmacs 21.5.7 "broccoflower" is released. | |
800 | |
890 | 801 2002-06-27 Mike Sperber <mike@xemacs.org> |
802 | |
803 * automated/weak-tests.el: Create. | |
804 | |
875 | 805 2002-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
806 | |
807 * automated/mule-tests.el ((featurep 'mule)): Fix unicode test. | |
808 | |
863 | 809 2002-04-27 Stephen J. Turnbull <stephen@xemacs.org> |
810 | |
811 * automated/test-harness.el (test-harness-from-buffer): Clean up | |
812 Check-Message and Check-Error-Message when done. | |
813 | |
826 | 814 2002-05-05 Ben Wing <ben@xemacs.org> |
815 | |
816 * automated/lisp-tests.el: | |
817 * automated/symbol-tests.el: | |
818 * automated/test-harness.el: | |
819 * automated/test-harness.el (test-harness-from-buffer): | |
820 Fix test harness to output FAIL messages to stderr when in | |
821 batch mode. | |
822 | |
823 Fix up some problems in lisp-tests/symbol-tests that were | |
824 causing spurious failures. | |
825 | |
804 | 826 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
827 | |
828 * XEmacs 21.5.6 "bok choi" is released. | |
829 | |
800 | 830 2002-03-31 Ben Wing <ben@xemacs.org> |
831 | |
832 * automated/mule-tests.el ((featurep 'mule)): | |
833 Fix for new Unicode support. | |
834 | |
774 | 835 2002-03-12 Ben Wing <ben@xemacs.org> |
836 | |
3322 | 837 * The Great Mule Merge of March 2002: |
838 see node by that name in the Internals Manual. | |
774 | 839 |
768 | 840 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
841 | |
842 * XEmacs 21.5.5 "beets" is released. | |
843 | |
725 | 844 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
845 | |
846 * XEmacs 21.5.4 "bamboo" is released. | |
847 | |
654 | 848 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
849 | |
850 * XEmacs 21.5.3 "asparagus" is released. | |
851 | |
641 | 852 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
853 | |
854 * XEmacs 21.5.2 "artichoke" is released. | |
855 | |
597 | 856 2001-05-29 Martin Buchholz <martin@xemacs.org> |
857 | |
858 * automated/mule-tests.el: | |
859 Avoid test failure if (temp-directory) is a symlink. | |
860 | |
522 | 861 2001-05-09 Martin Buchholz <martin@xemacs.org> |
862 | |
863 * XEmacs 21.5.1 "anise" is released. | |
864 | |
472 | 865 2001-04-18 Martin Buchholz <martin@xemacs.org> |
866 | |
867 * XEmacs 21.5.0 "alfalfa" is released. | |
868 | |
464 | 869 2001-03-23 Martin Buchholz <martin@xemacs.org> |
870 | |
871 * automated/lisp-tests.el: | |
872 Add test for mis-byte-compilation of (- 0 x). | |
873 | |
462 | 874 2001-03-21 Martin Buchholz <martin@xemacs.org> |
875 | |
876 * XEmacs 21.2.46 "Urania" is released. | |
877 | |
878 2001-03-09 William M. Perry <wmperry@aventail.com> | |
879 | |
880 * gtk/UNIMPLEMENTED: | |
881 * gtk/event-stream-tests.el: | |
882 * gtk/gnome-test.el: | |
883 * gtk/gtk-embedded-test.el: | |
884 * gtk/gtk-extra-test.el: | |
885 * gtk/gtk-test.el: | |
886 * gtk/gtk-test.glade: | |
887 * gtk/statusbar-test.el: | |
888 * gtk/toolbar-test.el: | |
889 * gtk/xemacs-toolbar.el: | |
890 The Great GTK Merge: new directory and files. | |
891 | |
892 2001-03-02 Ben Wing <ben@xemacs.org> | |
893 | |
894 * automated\case-tests.el (string-0-through-32): | |
895 (string-127-through-160): Created new strings which contain | |
896 unprintable characters, and initialize them in a loop. | |
897 Rewrite all strings using unprintable characters as concat's | |
898 with the above variables, so that this file can be made ASCII, | |
899 not binary. | |
900 | |
460 | 901 2001-02-23 Martin Buchholz <martin@xemacs.org> |
902 | |
903 * XEmacs 21.2.45 "Thelxepeia" is released. | |
904 | |
905 2001-02-20 Matt Tucker <tuck@whistlingfish.net> | |
906 | |
907 * automated/syntax-tests.el: remove debug message | |
908 | |
909 2001-02-17 Matt Tucker <tuck@whistlingfish.net> | |
910 | |
911 * automated/syntax-tests.el: | |
912 Added tests for syntax-table extents. | |
913 Added regression tests for fencepost bugs with | |
914 `find_start_of_comment' and `find_end_of_comment'. | |
915 | |
458 | 916 2001-02-08 Martin Buchholz <martin@xemacs.org> |
917 | |
918 * XEmacs 21.2.44 "Thalia" is released. | |
919 | |
456 | 920 2001-01-26 Martin Buchholz <martin@xemacs.org> |
921 | |
922 * XEmacs 21.2.43 "Terspichore" is released. | |
923 | |
454 | 924 2001-01-20 Martin Buchholz <martin@xemacs.org> |
925 | |
926 * XEmacs 21.2.42 "Poseidon" is released. | |
927 | |
452 | 928 2001-01-17 Martin Buchholz <martin@xemacs.org> |
929 | |
930 * XEmacs 21.2.41 "Polyhymnia" is released. | |
931 | |
932 2001-01-15 Martin Buchholz <martin@xemacs.org> | |
933 | |
934 * automated/byte-compiler-tests.el ((let ((z 1)) (or (setq z 42)) z)): | |
935 Add regression test for mis-byte-compilation. | |
936 | |
450 | 937 2001-01-08 Martin Buchholz <martin@xemacs.org> |
938 | |
939 * XEmacs 21.2.40 is released. | |
940 | |
448 | 941 2000-12-31 Martin Buchholz <martin@xemacs.org> |
942 | |
943 * XEmacs 21.2.39 is released. | |
944 | |
945 2000-12-28 Martin Buchholz <martin@xemacs.org> | |
946 | |
947 * automated/lisp-tests.el: | |
948 Avoid triggering Solaris printf buffer overflow from (format). | |
949 | |
950 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org> | |
951 | |
952 * redisplay-tests.el: New file. | |
953 | |
954 2000-12-12 Martin Buchholz <martin@xemacs.org> | |
955 | |
956 * automated/lisp-tests.el: Add/Change (format) tests. | |
957 | |
958 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org> | |
959 | |
960 * automated/lisp-test.el: Test if all-completions ignore | |
961 elements start with space. | |
962 | |
963 2000-12-04 Yoshiki Hayashi <yoshiki@xemacs.org> | |
964 | |
965 * automated/regexp-tests.el: Test unmatched search doesn't | |
966 alter match-string. | |
967 | |
446 | 968 2000-12-05 Martin Buchholz <martin@xemacs.org> |
969 | |
970 * XEmacs 21.2.38 is released. | |
971 | |
972 2000-12-01 Martin Buchholz <martin@xemacs.org> | |
973 | |
974 * automated/test-harness.el (test-harness-from-buffer): Throw away | |
975 all warnings, even those not influenced by byte-compiler-warnings. | |
976 | |
977 2000-11-30 Martin Buchholz <martin@xemacs.org> | |
978 | |
979 * automated/lisp-tests.el: | |
980 Test byte-compiler arithmetic optimizations. | |
981 | |
982 2000-11-27 Yoshiki Hayashi <yoshiki@xemacs.org> | |
983 | |
984 * automated/case-tests.el: Add more tests. | |
985 | |
986 2000-11-24 Yoshiki Hayashi <yoshiki@xemacs.org> | |
987 | |
988 * automated/regexp-tests.el: New file. | |
989 | |
990 2000-11-22 Martin Buchholz <martin@xemacs.org> | |
991 | |
992 * automated/lisp-tests.el: | |
993 Add 64-bit-correctness format tests. | |
994 Don't quote the first arg to Check-Error. | |
995 | |
996 2000-11-14 Yoshiki Hayashi <yoshiki@xemacs.org> | |
997 | |
998 * automated/case-tests.el: New file. | |
999 | |
444 | 1000 2000-11-14 Martin Buchholz <martin@xemacs.org> |
1001 | |
1002 * XEmacs 21.2.37 is released. | |
1003 | |
1004 2000-11-09 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1005 | |
1006 * automated/lisp-test.el: More format tests. | |
1007 | |
1008 2000-11-10 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1009 | |
1010 * automated/ccl-tests.el (ccl-test-simple-read-and-write): | |
1011 (ccl-test-read-write-multibyte-character): Use make-char | |
1012 for non MULE XEmacs. | |
1013 | |
1014 2000-10-15 MIYASHITA Hisashi <himi@m17n.org> | |
1015 | |
1016 * automated/ccl-tests.el: New file. | |
1017 | |
1018 2000-10-30 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1019 | |
1020 * automated/lisp-test.el: Add test for format. | |
1021 | |
1022 2000-10-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1023 | |
1024 * automated/byte-compiler-test.el: Add optimization test for | |
1025 byte-after-unbind-ops. | |
1026 | |
1027 2000-10-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1028 | |
1029 * automated/hash-table-test.el: Make new cons cell for | |
1030 equal and not eq object. | |
1031 | |
1032 2000-10-03 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1033 | |
1034 * automated/lisp-test.el: Add replace-match test. | |
1035 | |
442 | 1036 2000-10-04 Martin Buchholz <martin@xemacs.org> |
1037 | |
1038 * XEmacs 21.2.36 is released. | |
1039 | |
1040 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
1041 | |
1042 * automated/lisp-tests.el: Add `current-time' test. | |
1043 | |
1044 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
1045 | |
1046 * automated/mule-tests.el: Add ucs tests. | |
1047 | |
1048 * DLL/dltest.c: Remove reference to obsolete emacsfns.h | |
1049 | |
1050 2000-08-03 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1051 | |
1052 * automated/lisp-test.el: Check matching \\= against string | |
1053 doesn't crash XEmacs. | |
1054 From: Markus Linnala <maage@cs.tut.fi> | |
1055 | |
1056 2000-07-26 Andy Piper <andy@xemacs.org> | |
1057 | |
1058 * glyph-test.el: fix for new glyph instantiation mechanism. | |
1059 | |
1060 2000-07-31 Martin Buchholz <martin@xemacs.org> | |
1061 | |
1062 * automated/hash-table-tests.el: | |
1063 Fix up test suite to comply with new hash table weakness API. | |
1064 | |
1065 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
1066 | |
1067 * XEmacs 21.2.35 is released. | |
1068 | |
1069 2000-06-17 Martin Buchholz <martin@xemacs.org> | |
1070 | |
1071 * automated/database-tests.el: Remove any previous .pag, .dir files. | |
1072 | |
1073 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
1074 | |
1075 * XEmacs 21.2.34 is released. | |
1076 | |
1077 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
1078 | |
1079 * XEmacs 21.2.33 is released. | |
1080 | |
1081 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1082 | |
1083 * XEmacs 21.2.32 is released. | |
1084 | |
1085 2000-03-10 Martin Buchholz <martin@xemacs.org> | |
1086 | |
1087 * automated/mule-tests.el: Check that (make-temp-name) returns | |
1088 unique values. | |
1089 | |
1090 2000-03-06 Yoshiki Hayashi <yoshiki@xemacs.org> | |
1091 | |
1092 * gutter-test.el: Fix name of specifier. | |
1093 | |
1094 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
1095 | |
1096 * XEmacs 21.2.31 is released. | |
1097 | |
1098 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
1099 | |
1100 * XEmacs 21.2.30 is released. | |
1101 | |
1102 2000-02-17 Martin Buchholz <martin@xemacs.org> | |
1103 | |
1104 * automated/mule-tests.el: Added some fileio tests. | |
1105 | |
1106 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
1107 | |
1108 * XEmacs 21.2.29 is released. | |
1109 | |
1110 2000-02-13 Martin Buchholz <martin@xemacs.org> | |
1111 | |
1112 * automated/lisp-tests.el: Add subseq tests. | |
1113 | |
440 | 1114 2000-02-07 Martin Buchholz <martin@xemacs.org> |
1115 | |
1116 * XEmacs 21.2.28 is released. | |
1117 | |
1118 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
1119 | |
1120 * automated/lisp-tests.el: Add plist manipulation tests. | |
1121 | |
1122 2000-02-02 Martin Buchholz <martin@xemacs.org> | |
1123 | |
1124 * automated/symbol-tests.el: Crashes fixed, so resurrect | |
1125 makunbound test for dontusethis-set-symbol-value-handler. | |
1126 Add more dontusethis-set-symbol-value-handler tests. | |
1127 Should fix any lingering problems with gnus playing with | |
1128 pathname-coding-system. | |
1129 | |
1130 2000-01-25 Martin Buchholz <martin@xemacs.org> | |
1131 | |
1132 * mule-tests.el: Add coding-system tests. | |
1133 | |
438 | 1134 2000-01-18 Martin Buchholz <martin@xemacs.org> |
1135 | |
1136 * XEmacs 21.2.27 is released. | |
1137 | |
1138 1999-12-24 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
1139 | |
1140 * automated/syntax-tests.el: New file. | |
1141 Add test for scan_words using forward-word and backword-word. | |
1142 | |
1143 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
1144 | |
1145 * automated/mule-tests.el: | |
1146 Test resizing of small and big (> 8k bytes) strings. | |
1147 | |
436 | 1148 1999-12-31 Martin Buchholz <martin@xemacs.org> |
1149 | |
1150 * XEmacs 21.2.26 is released. | |
1151 | |
434 | 1152 1999-12-24 Martin Buchholz <martin@xemacs.org> |
1153 | |
1154 * XEmacs 21.2.25 is released. | |
1155 | |
1156 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
1157 | |
1158 * automated/byte-compiler-tests.el: Add Jan's tests for equal | |
1159 effect of bytecode and interpreted code. | |
1160 | |
1161 * automated/lisp-tests.el: Add tests for near-text functions. | |
1162 | |
1163 1999-12-19 Martin Buchholz <martin@xemacs.org> | |
1164 | |
1165 * automated/mule-tests.el: Add tests for fillarray, aset. | |
1166 | |
1167 1999-12-17 Martin Buchholz <martin@xemacs.org> | |
1168 | |
1169 * automated/lisp-tests.el: Add tests for mapcar1() crashes. | |
1170 | |
432 | 1171 1999-12-14 Martin Buchholz <martin@xemacs.org> |
1172 | |
1173 * XEmacs 21.2.24 is released. | |
1174 | |
430 | 1175 1999-12-07 Martin Buchholz <martin@xemacs.org> |
1176 | |
1177 * XEmacs 21.2.23 is released. | |
1178 | |
428 | 1179 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
1180 | |
1181 * XEmacs 21.2.22 is released | |
1182 | |
1183 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
1184 | |
1185 * XEmacs 21.2.21 is released. | |
1186 | |
1187 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1188 | |
1189 * XEmacs 21.2.20 is released | |
1190 | |
1191 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1192 | |
1193 * XEmacs 21.2.19 is released | |
1194 | |
1195 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1196 | |
1197 * XEmacs 21.2.18 is released | |
1198 | |
1199 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1200 | |
1201 * XEmacs 21.2.17 is released | |
1202 | |
1203 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1204 | |
1205 * XEmacs 21.2.16 is released | |
1206 | |
1207 1999-06-07 Hrvoje Niksic <hniksic@srce.hr> | |
1208 | |
1209 * automated/base64-tests.el: Check for error instead for nil where | |
1210 error conditions are expected. | |
1211 | |
1212 * automated/base64-tests.el: Comment out (for now) the code that | |
1213 causes crashes. | |
1214 | |
1215 1999-06-05 Hrvoje Niksic <hniksic@srce.hr> | |
1216 | |
1217 * automated/base64-tests.el: Check that the decoder handles | |
1218 arbitrary characters. Cut down on the number of tests. | |
1219 | |
1220 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1221 | |
1222 * XEmacs 21.2.15 is released | |
1223 | |
1224 1999-06-02 Oscar Figueiredo <oscar@xemacs.org> | |
1225 | |
1226 * automated/lisp-tests.el: Test `split-string' | |
1227 | |
1228 1999-05-27 Hrvoje Niksic <hniksic@srce.hr> | |
1229 | |
1230 * automated/base64-tests.el: New file. | |
1231 | |
1232 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1233 | |
1234 * XEmacs 21.2.14 is released | |
1235 | |
1236 1999-05-06 Hrvoje Niksic <hniksic@srce.hr> | |
1237 | |
1238 * automated/symbol-tests.el: Add many more tests. | |
1239 | |
1240 1999-05-06 Hrvoje Niksic <hniksic@srce.hr> | |
1241 | |
1242 * automated/lisp-tests.el: Ditto. | |
1243 | |
1244 * automated/hash-table-tests.el: Ditto. | |
1245 | |
1246 * automated/database-tests.el: Don't use backquote where quote | |
1247 would suffice. | |
1248 | |
1249 * automated/symbol-tests.el: Add tests for magic symbols. | |
1250 | |
1251 1999-05-04 Hrvoje Niksic <hniksic@srce.hr> | |
1252 | |
1253 * automated/hash-table-tests.el: Fix comment. | |
1254 | |
1255 1999-04-22 Hrvoje Niksic <hniksic@srce.hr> | |
1256 | |
1257 * automated/test-harness.el (batch-test-emacs): Minor fixes. | |
1258 | |
1259 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1260 | |
1261 * XEmacs 21.2.13 is released | |
1262 | |
1263 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1264 | |
1265 * XEmacs 21.2.12 is released | |
1266 | |
1267 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1268 | |
1269 * XEmacs 21.2.11 is released | |
1270 | |
1271 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1272 | |
1273 * XEmacs 21.2.10 is released | |
1274 | |
1275 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1276 | |
1277 * XEmacs 21.2.9 is released | |
1278 | |
1279 1999-01-30 Martin Buchholz <martin@xemacs.org> | |
1280 | |
1281 * automated/lisp-tests.el: Add test for buffer-local function | |
1282 parameter crash | |
1283 | |
1284 1998-12-30 Martin Buchholz <martin@xemacs.org> | |
1285 | |
1286 * automated/database-tests.el: Minor tweaks | |
1287 | |
1288 * ChangeLog: new file | |
1289 |