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
03a05b9a
Commit
03a05b9a
authored
Dec 02, 2002
by
pfdietz
Browse files
Added tests for *features* interactions as specified on the *FEATURES* page of the ansi spec.
parent
53d5b0b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
ansi-tests/features.lsp
0 → 100644
View file @
03a05b9a
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Mon Dec 2 07:44:40 2002
;;;; Contains: Tests of *FEATURES*
(in-package :cl-test)
(deftest features.1
(let ((f *features*))
(or (not (member :draft-ansi-ci f))
(not (intersection '(:draft-ansi-cl-2 :ansi-cl) f))))
t)
(deftest features.2
(let ((f *features*))
(or (not (intersection '(:x3j13 :draft-ansi-cl :ansi-cl) f))
(notnot (member :common-lisp f))))
t)
(deftest features.3
(not (member :cltl2 *features*))
t)
ansi-tests/gclload2.lsp
View file @
03a05b9a
...
...
@@ -206,3 +206,6 @@
(compile-and-load "char-aux.lsp")
(load "character.lsp")
(load "char-compare.lsp")
;;; Tests of system construction
(load "features.lsp")
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