From: Christophe Rhodes Date: Thu, 5 Apr 2012 15:54:56 +0000 (+0100) Subject: minor fix to alien.impure.lisp test X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3d46727f4b73a63c788c143efb1f196c153af371;p=sbcl.git minor fix to alien.impure.lisp test Don't signal a compiler-note with ERROR to indicate failure; it bypasses the handlers and aborts the entire file. Use (error "bad note: ~A" note) instead --- diff --git a/tests/alien.impure.lisp b/tests/alien.impure.lisp index cf708ef..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)))