Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
676982b9
Commit
676982b9
authored
Dec 04, 2005
by
pfdietz
Browse files
Random subtypep failure from sbcl
parent
fa867d23
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/subtypep-cons.lsp
View file @
676982b9
...
...
@@ -355,5 +355,22 @@
(values (subtypep `(not ,t2) `(not ,t1))))
nil)
;;;; From sbcl 0.9.6.57
(deftest subtypep.cons.43
(let* ((n -3.926510009989861d7)
(t1 '(not (cons float t)))
(t2 `(or (not (cons (eql 0) (real ,n ,n)))
(not (cons t (eql 0))))))
(multiple-value-bind
(sub1 good1)
(subtypep* t1 t2)
(multiple-value-bind
(sub2 good2)
(subtypep* `(not ,t2) `(not ,t1))
(or (not good1)
(not good2)
(and sub1 sub2)
(and (not sub1) (not sub2))))))
t)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment