X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler-1.impure-cload.lisp;h=6d61de0afc2c16b5dbbceb65a663fbe95b42add6;hb=f1407e424f1063203af07d2e61ceef58515a4797;hp=a608dc8ac0a2373fc1b5c52a0ff579df3a43cf5a;hpb=2489ac3021325890a98886110ab3055fa990a850;p=sbcl.git diff --git a/tests/compiler-1.impure-cload.lisp b/tests/compiler-1.impure-cload.lisp index a608dc8..6d61de0 100644 --- a/tests/compiler-1.impure-cload.lisp +++ b/tests/compiler-1.impure-cload.lisp @@ -202,4 +202,35 @@ (assert (raises-error? (bug231b 0 1.5) type-error)) (assert (raises-error? (bug231b 0 0) type-error)) +;;; A bug appeared in flaky7_branch. Python got lost in unconverting +;;; embedded tail calls during let-convertion. +(defun bug239 (bit-array-2 &optional result-bit-array) + (declare (type (array bit) bit-array-2) + (type (or (array bit) (member t nil)) result-bit-array)) + (unless (simple-bit-vector-p bit-array-2) + (multiple-value-call + (lambda (data1 start1) + (multiple-value-call + (lambda (data2 start2) + (multiple-value-call + (lambda (data3 start3) + (declare (ignore start3)) + (print (list data1 data2))) + (values 0 0))) + (values bit-array-2 0))) + (values 444 0)))) +(assert (equal (bug239 (make-array 4 :element-type 'bit + :adjustable t + :initial-element 0) + nil) + '(444 #*0000))) + +(defstruct some-structure a) +(eval-when (:compile-toplevel) + ;; in the big CLASS reorganization in pre8, this would fail with + ;; SOME-STRUCTURE-A is not FBOUNDP. Fixed in 0.pre8.64 + (find-class 'some-structure nil)) +(eval-when (:load-toplevel) + (assert (typep (find-class 'some-structure) 'class))) + (sb-ext:quit :unix-status 104) ; success