X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Falien.impure.lisp;h=fe5c18ee3d99ae68e301f50705c35e851521662f;hb=3d46727f4b73a63c788c143efb1f196c153af371;hp=b490961056936862a5161c2db63bd85058d35e8e;hpb=1e9b2eeb4d8d07e6282dc6a747661134ccda8f4c;p=sbcl.git diff --git a/tests/alien.impure.lisp b/tests/alien.impure.lisp index b490961..fe5c18e 100644 --- a/tests/alien.impure.lisp +++ b/tests/alien.impure.lisp @@ -304,7 +304,7 @@ "execv")) (values (alien-funcall sys-execv1 program argv))))) (compiler-note (n) - (error n)))) + (error "bad note: ~A" n)))) (with-test (:name :bug-721087) (assert (typep nil '(alien c-string))) @@ -327,7 +327,8 @@ (with-test (:name :malloc-failure) (assert (eq :enomem (handler-case - (sb-alien:make-alien char (1- array-total-size-limit)) + (loop repeat 128 + collect (sb-alien:make-alien char (1- array-total-size-limit))) (storage-condition () :enomem)))))