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
0297e0ab
Commit
0297e0ab
authored
21 years ago
by
pfdietz
Browse files
Options
Downloads
Patches
Plain Diff
Added three new cmucl failures and a gcl failure.
parent
d8810696
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/misc.lsp
+49
-0
49 additions, 0 deletions
ansi-tests/misc.lsp
with
49 additions
and
0 deletions
ansi-tests/misc.lsp
+
49
−
0
View file @
0297e0ab
...
...
@@ -949,3 +949,52 @@
(declare (optimize (safety 3) (speed 0) (debug 0)))
(ash 6916244 (min 42 -185236061640)))))
0)
;;; Unwind-protect bug, from sbcl:
;;; "The value NIL is not of type SB-C::NODE."
(deftest misc.75
(funcall (compile nil '(lambda () (flet ((%f12 () (unwind-protect 1))) 0))))
0)
;;; cmucl (2003-10-12), "NIL is not of type C::REF"
(deftest misc.76
(funcall
(compile nil
'(lambda (a c)
(if nil (unwind-protect (max 521739 (unwind-protect c)))
(logandc2 3942 a))))
0 0)
3942)
;;; gcl (2003-10-11) Miscomputation of (mod 0 -53) in compiled code
(deftest misc.77
(funcall (compile nil '(lambda () (mod 0 -53))))
0)
;;; cmucl (2003-10-12) "NIL is not of type C::BYTE-LAMBDA-INFO"
(deftest misc.78
(funcall
(compile nil '(lambda ()
(declare (optimize (speed 0) (debug 0)))
(let ((v4
(case 227
((-11113 -106126) (unwind-protect 8473))
(t 43916))))
-12))))
-12)
;;; Same as misc.78, but with no declarations
;;; In cmucl (2003-10-12) "NIL is not of type C::ENVIRONMENT"
(deftest misc.79
(funcall
(compile nil '(lambda ()
(let ((v4
(case 227
((-11113 -106126) (unwind-protect 8473))
(t 43916))))
-12))))
-12)
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