sbcl.sbcl/tests/bug204-test.lisp
William Harold Newman 97e52e46f9 0.7.9.30:
merged Matthew Danish's "count, count-if, ..." patch (from
		sbcl-devel 2002-11-02)
	added some test cases
2002-11-05 00:23:17 +00:00

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)))