minor fix to alien.impure.lisp test
authorChristophe Rhodes <csr21@cantab.net>
Thu, 5 Apr 2012 15:54:56 +0000 (16:54 +0100)
committerChristophe Rhodes <csr21@cantab.net>
Fri, 13 Apr 2012 15:17:13 +0000 (16:17 +0100)
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

tests/alien.impure.lisp

index cf708ef..fe5c18e 100644 (file)
                                            "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)))