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
c37d18bd
Commit
c37d18bd
authored
Jun 07, 2004
by
pfdietz
Browse files
More backquote related printing tests
parent
48a4d10f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ansi-tests/print-cons.lsp
View file @
c37d18bd
...
...
@@ -73,6 +73,66 @@
nconc (randomly-check-readability x :test #'is-similar)))
nil)
(deftest print.backquote.random.2
(let ((x '`(,@a ,@b)))
(loop
repeat 20
nconc (randomly-check-readability x :test #'is-similar)))
nil)
(deftest print.backquote.random.3
(let ((x '`(,.a ,.b)))
(loop
repeat 20
nconc (randomly-check-readability x :test #'is-similar)))
nil)
(deftest print.backquote.random.4
(let ((x '`(,a ,b)))
(loop
repeat 20
nconc (randomly-check-readability x :test #'is-similar)))
nil)
(deftest print.backquote.random.5
(let ((x '`#(,a ,b)))
(loop
repeat 20
nconc (randomly-check-readability x :test #'is-similar)))
nil)
(deftest print.backquote.random.6
(let ((x '`(,@a ,@b)))
(and (consp x)
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
nil)
(deftest print.backquote.random.7
(let ((x '`(,.a ,.b)))
(and (consp x)
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
nil)
(deftest print.backquote.random.8
(let ((x '`(,a ,b)))
(and (consp x)
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
nil)
(deftest print.backquote.random.9
(let ((x '`#(,a ,b)))
(and (consp x)
(loop
repeat 20
nconc (randomly-check-readability (list (car x)) :test #'is-similar))))
nil)
;; random circular cons graphs
(deftest print.cons.random.2
(loop repeat 50
...
...
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