X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler.impure-cload.lisp;h=bdd3550389bde7876ddd043c070b11e5effcd508;hb=1f7bb609de31bba1a85817496ecbde52a07edf14;hp=531f1b652fa178bf4a6dea9915ba55cc8de362c8;hpb=61c18727668ff0c3263a3d363e609d4522d545cc;p=sbcl.git diff --git a/tests/compiler.impure-cload.lisp b/tests/compiler.impure-cload.lisp index 531f1b6..bdd3550 100644 --- a/tests/compiler.impure-cload.lisp +++ b/tests/compiler.impure-cload.lisp @@ -325,5 +325,62 @@ (dotimes (k n) (princ k))) +;;; bug reported by Brian Downing: incorrect detection of MV-LET +(DEFUN #:failure-testcase (SESSION) + (LABELS ((CONTINUATION-1 () + (PROGN + (IF (foobar-1 SESSION) + (CONTINUATION-2)) + (LET ((CONTINUATION-3 + #'(LAMBDA () + (MULTIPLE-VALUE-CALL #'CONTINUATION-2 + (CONTINUATION-1))))) + (foobar-2 CONTINUATION-3)))) + (CONTINUATION-2 (&REST OTHER-1) + (DECLARE (IGNORE OTHER-1)))) + (continuation-1))) + +;;; reported by antifuchs/bdowning/etc on #lisp: ITERATE failure on +;;; (iter (for i in '(1 2 3)) (+ i 50)) +(defun values-producer () (values 1 2 3 4 5 6 7)) + +(defun values-consumer (fn) + (let (a b c d e f g h) + (multiple-value-bind (aa bb cc dd ee ff gg hh) (funcall fn) + (setq a aa) + (setq b bb) + (setq c cc) + (setq d dd) + (setq e ee) + (setq f ff) + (setq g gg) + (setq h hh) + (values a b c d e f g h)))) + +(let ((list (multiple-value-list (values-consumer #'values-producer)))) + (assert (= (length list) 8)) + (assert (null (nth 7 list)))) + +;;; failed on Alpha prior to sbcl-0.8.10.30 +(defun lotso-values () + (values 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9 + 0 1 2 3 4 5 6 7 8 9)) + +;;; bug 313: source transforms were "lisp-1" +(defun srctran-lisp1-1 (cadr) (if (functionp cadr) (funcall cadr 1) nil)) +(assert (eql (funcall (eval #'srctran-lisp1-1) #'identity) 1)) +(without-package-locks + ;; this be a nasal demon, but test anyways + (defvar caar)) +(defun srctran-lisp1-2 (caar) (funcall (sb-ext:truly-the function caar) 1)) +(assert (eql (funcall (eval #'srctran-lisp1-2) #'identity) 1)) (sb-ext:quit :unix-status 104)