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
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ansi-test
ansi-test
Commits
4609b7d5
Commit
4609b7d5
authored
Mar 04, 2003
by
pfdietz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a couple of extended-char tests.
parent
f2fd091c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
ansi-tests/subtypep.lsp
ansi-tests/subtypep.lsp
+15
-0
No files found.
ansi-tests/subtypep.lsp
View file @
4609b7d5
...
...
@@ -111,12 +111,27 @@
(subtypep* 'simple-bit-vector 'simple-vector)
nil t)
;;; Extended characters
(deftest subtypep.extended-char.1
(if (subtypep* 'character 'base-char)
(subtypep* 'extended-char nil)
(values t t))
t t)
(deftest subtypep.extended-char.2
(if (subtypep* 'extended-char nil)
(subtypep* 'character 'base-char)
(values t t))
t t)
(deftest subtypep.extended-char.3
(check-equivalence 'extended-char '(and character (not base-char)))
nil)
;;; Some and, or combinations
(deftest subtypep.and/or.1
(check-equivalence
'(and (or symbol (integer 0 15))
...
...
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