Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ansi-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michał Herda
ansi-test
Commits
d08d197b
Commit
d08d197b
authored
21 years ago
by
pfdietz
Browse files
Options
Downloads
Patches
Plain Diff
More TODOs
parent
d27466ee
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ansi-tests/TODO
+36
-0
36 additions, 0 deletions
ansi-tests/TODO
with
36 additions
and
0 deletions
ansi-tests/TODO
+
36
−
0
View file @
d08d197b
...
@@ -33,3 +33,39 @@ Things to do to the test suite (not a complete list)
...
@@ -33,3 +33,39 @@ Things to do to the test suite (not a complete list)
16. Test VECTOR-PUSH-EXTEND on displaced vectors, etc. (just like adjust-array;
16. Test VECTOR-PUSH-EXTEND on displaced vectors, etc. (just like adjust-array;
see 6.)
see 6.)
17. Tests that have an argument that provides a return value for special
conditions (like eof) that happens to be the same as a normal value the
functions would return (suggested by CR).
18. Add random tests for COERCE (the result either is either typep of the
second arg (except for rational stuff) or a type-error is signalled.)
19. Add two missing tests from CLOS (spotted by Bruno Haible):
;; Shared slot remains shared.
;; CLHS 4.3.6.: "The value of a slot that is specified as shared both in the old
;; class and in the new class is retained."
(multiple-value-bind (value condition)
(ignore-errors
(defclass foo74 () ((size :initarg :size :initform 1 :allocation :class)))
(setq i (make-instance 'foo74))
(defclass foo74 () ((size :initarg :size :initform 2 :allocation :class) (other)))
(slot-value i 'size))
(list value (type-of condition)))
Expected: (1 NULL)
Got: (2 NULL)
(progn
(defclass foo92b (foo92a) ((s :initarg :s)))
(defclass foo92a () ())
(let ((x (make-instance 'foo92b :s 5)) (update-counter 0))
(defclass foo92b (foo92a) ((s) (s1) (s2))) ; still subclass of foo92a
(slot-value x 's)
(defmethod update-instance-for-redefined-class ((object foo92b) added-slots discarded-slots property-list &rest initargs)
(incf update-counter))
(make-instances-obsolete 'foo92a)
(slot-value x 's)
update-counter))
Expected: 1
Got: 0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment