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
58f50185
Commit
58f50185
authored
20 years ago
by
pfdietz
Browse files
Options
Downloads
Patches
Plain Diff
Two additional ACL tests
parent
35f645ae
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
+29
-0
29 additions, 0 deletions
ansi-tests/misc.lsp
with
29 additions
and
0 deletions
ansi-tests/misc.lsp
+
29
−
0
View file @
58f50185
...
...
@@ -10317,3 +10317,32 @@ Broken at C::WT-MAKE-CLOSURE.
#c(1.0d0 2.0d0))
'double-float))
t)
;;; ACL 6.2 (trial, x86 linux)
;;; Incorrect return value (t instead of nil)
(deftest misc.565
(funcall
(compile
nil
'(lambda (x)
(declare (optimize (speed 2) (safety 1) (debug 3) (space 0))
(type double-float x))
(not (the (eql 1.0d0) x))))
1.0d0)
nil)
;;; ASH
;;; Incorrect value (59 == (ash p1 -3))
(deftest misc.566
(funcall
(compile
nil
'(lambda (p1)
(declare (optimize (speed 3) (safety 2) (debug 2) (space 0))
(type (integer 465 127871) p1))
(ash p1 -35)))
477)
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