Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
ansi-test
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Karsten Poeck
ansi-test
Commits
8411958f
Commit
8411958f
authored
Aug 09, 2004
by
pfdietz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change (random 1) to (random 10), and fix apply/funcall confusion in output-test
parent
23378d16
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ansi-tests/printer-aux.lsp
ansi-tests/printer-aux.lsp
+3
-3
No files found.
ansi-tests/printer-aux.lsp
View file @
8411958f
...
...
@@ -264,7 +264,7 @@
((:readably *print-readably*) *print-readably*)
((:right-margin *print-right-margin*) *print-right-margin*)
((:stream *standard-output*) *standard-output*))
(let ((results (multiple-value-list (
apply
fun obj))))
(let ((results (multiple-value-list (
funcall
fun obj))))
(assert (= (length results) 1))
(assert (eql (car results) obj))
obj))
...
...
@@ -299,7 +299,7 @@
(loop
for args = (make-random-write-args)
for package = (find-package (random-from-seq #("CL-TEST" "CL-USER" "KEYWORD")))
for obj = (random-thing (random 1))
for obj = (random-thing (random 1
0
))
for s1 = (let ((*package* package))
(with-output-to-string (s) (apply #'write obj :stream s ,@write-args args)))
for s2 = (let ((*package* package))
...
...
@@ -326,7 +326,7 @@
(loop
for args = (make-random-write-args)
for package = (find-package (random-from-seq #("CL-TEST" "CL-USER" "KEYWORD")))
for obj = (random-thing (random 1))
for obj = (random-thing (random 1
0
))
for s1 = (let ((*package* package))
(with-output-to-string (s) (apply #'write obj :stream s ,@write-args args)))
for s2 = (let ((*package* package))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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