mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
merged Matthew Danish's "count, count-if, ..." patch (from sbcl-devel 2002-11-02) added some test cases
14 lines
523 B
Common Lisp
14 lines
523 B
Common Lisp
;;;; a test of EVAL-WHEN inside a local environment (which will be
|
|
;;;; compiled and loaded, and have its side effects checked, by some
|
|
;;;; other file which runs automatically as part of the test suite)
|
|
|
|
(cl:in-package :cl-user)
|
|
|
|
(macrolet ((def (x)
|
|
(pushnew `(:expanded ,x) *bug204-test-status* :test #'equalp)
|
|
`(pushnew `(:called ,',x) *bug204-test-status* :test #'equalp)))
|
|
(eval-when (:compile-toplevel)
|
|
(def :compile-toplevel))
|
|
(eval-when (:load-toplevel)
|
|
(def :load-toplevel)))
|