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
3d7573fd
Commit
3d7573fd
authored
Feb 23, 2004
by
pfdietz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Begin adding printer tests.
parent
2fe0a9e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
ansi-tests/print-integers.lsp
ansi-tests/print-integers.lsp
+8
-0
ansi-tests/printer-aux.lsp
ansi-tests/printer-aux.lsp
+14
-0
No files found.
ansi-tests/print-integers.lsp
0 → 100644
View file @
3d7573fd
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Mon Feb 23 06:26:25 2004
;;;; Contains: Printing tests for integers
(in-package :cl-test)
ansi-tests/printer-aux.lsp
0 → 100644
View file @
3d7573fd
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Mon Feb 23 06:20:00 2004
;;;; Contains: Auxiliary functions and macros for printer tests
(in-package :cl-test)
(defmacro def-print-test (name form result &rest bindings)
`(deftest ,name
(equalt (let ,bindings
(with-standard-io-syntax (prin1 ,form)))
,result)
t))
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