X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler.pure.lisp;h=704a693d34b6ebba66c7a9a5ed48d99069038086;hb=3aaed55326303bb377c4821c5e83b2e4e9c538fc;hp=ba58524a360e8eb518fed057c9c4346999da72ae;hpb=d1151f185f19fbd4067bddc84b7d45bebf990f6f;p=sbcl.git diff --git a/tests/compiler.pure.lisp b/tests/compiler.pure.lisp index ba58524..704a693 100644 --- a/tests/compiler.pure.lisp +++ b/tests/compiler.pure.lisp @@ -197,3 +197,40 @@ ;;; a bug in the MAP deftransform caused non-VECTOR array specifiers ;;; to cause errors in the compiler. Fixed by CSR in 0.7.8.10 (assert (list (compile nil '(lambda (x) (map 'simple-array 'identity x))))) + +;;; bug 129: insufficient syntax checking in MACROLET +(multiple-value-bind (result error) + (ignore-errors (eval '(macrolet ((foo x `',x)) (foo 1 2 3)))) + (assert (null result)) + (assert (typep error 'error))) + +;;; bug 124: environment of MACROLET-introduced macro expanders +(assert (equal + (macrolet ((mext (x) `(cons :mext ,x))) + (macrolet ((mint (y) `'(:mint ,(mext y)))) + (list (mext '(1 2)) + (mint (1 2))))) + '((:MEXT 1 2) (:MINT (:MEXT 1 2))))) + +;;; bug 48c: SYMBOL-MACROLET should signal PROGRAM-ERROR if introduced +;;; symbol is declared to be SPECIAL +(multiple-value-bind (result error) + (ignore-errors (funcall (lambda () + (symbol-macrolet ((s '(1 2))) + (declare (special s)) + s)))) + (assert (null result)) + (assert (typep error 'program-error))) + +(multiple-value-bind (result error) + (ignore-errors (ecase 1 (t 0))) + (assert (null result)) + (assert (typep error 'type-error))) + +(multiple-value-bind (result error) + (ignore-errors (ecase 1 (t 0) (1 2))) + (assert (eql result 2)) + (assert (null error))) + +;;; FTYPE should accept any functional type specifier +(compile nil '(lambda (x) (declare (ftype function f)) (f x)))