Update of /cvsroot/sbcl/sbcl/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv2418/tests
Added Files:
clos.pure.lisp
Log Message:
(logically part of 0.8.4.35 commit, but forgot to cvs add)
--- NEW FILE: clos.pure.lisp ---
;;;; CLOS tests with no side effects
;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; While most of SBCL is derived from the CMU CL system, the test
;;;; files (like this one) were written from scratch after the fork
;;;; from CMU CL.
;;;;
;;;; This software is in the public domain and is provided with
;;;; absolutely no warranty. See the COPYING and CREDITS files for
;;;; more information.
(cl:in-package :cl-user)
;;; not really a test for observable behaviour, but: make sure that
;;; all generic functions on startup have lambda lists known to the
;;; system, because some functionality (e.g. &key argument checking)
;;; depends on it. The basic functionality is tested elsewhere, but
;;; this is to investigate the internals for possible inconsistency.
(assert (null
(let (collect)
(sb-pcl::map-all-generic-functions
(lambda (gf)
(let ((arg-info (sb-pcl::gf-arg-info gf)))
(when (eq (sb-pcl::arg-info-lambda-list arg-info)
:no-lambda-list)
(push gf collect)))))
(print (nreverse collect)))))
-------------------------------------------------------
This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo
The Event For Linux Datacenter Solutions & Strategies in The Enterprise
Linux in the Boardroom; in the Front Office; & in the Server Room
http://www.enterpriselinuxforum.com
|