1.0.13.45: close the fd before deleting / moving files on CLOSE :ABORT T
[sbcl/simd.git] / tests / bug204-test.lisp
blobcb9764733ea5b1863e0389ea1cd978673ab2be50
1 ;;;; a test of EVAL-WHEN inside a local environment (which will be
2 ;;;; compiled and loaded, and have its side effects checked, by some
3 ;;;; other file which runs automatically as part of the test suite)
5 (cl:in-package :cl-user)
7 (macrolet ((def (x)
8 (pushnew `(:expanded ,x) *bug204-test-status* :test #'equalp)
9 `(pushnew `(:called ,',x) *bug204-test-status* :test #'equalp)))
10 (eval-when (:compile-toplevel)
11 (def :compile-toplevel))
12 (eval-when (:load-toplevel)
13 (def :load-toplevel)))