Skip to content
Snippets Groups Projects
Commit 3c829721 authored by pfdietz's avatar pfdietz
Browse files

I left out some tests of type-of. Here's a doozy.

parent ef8f5d60
No related branches found
No related tags found
No related merge requests found
...@@ -15,4 +15,6 @@ ...@@ -15,4 +15,6 @@
(load "deftype.lsp") (load "deftype.lsp")
(load "standard-generic-function.lsp") (load "standard-generic-function.lsp")
(load "type-of.lsp")
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Wed Jun 4 21:15:05 2003
;;;; Contains: Tests of TYPE-OF
(in-package :cl-test)
;;; It turns out I left out an important test of type-of:
;;; (type-of x) must be a recognizable subtype of every builtin type
;;; of which x is a member.
(deftest type-of.1
(loop for x in *universe*
for tp = (type-of x)
for failures = (loop for tp2 in *cl-all-type-symbols*
when (and (typep x tp2)
(not (subtypep tp tp2)))
collect tp2)
when failures collect (list x failures))
nil)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment