X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fpackages.impure.lisp;h=ddfdf1858a19e29546d27eab1b32a4a62a3c04bc;hb=e6aef26131543d369edf107df8fb94053646d1f4;hp=c1910eea13e84bacfca1243500eabfd6433e5b0d;hpb=f4b2df30d28c890bda36fdeea2c2243de09982eb;p=sbcl.git diff --git a/tests/packages.impure.lisp b/tests/packages.impure.lisp index c1910ee..ddfdf18 100644 --- a/tests/packages.impure.lisp +++ b/tests/packages.impure.lisp @@ -6,7 +6,7 @@ ;;;; While most of SBCL is derived from the CMU CL system, the test ;;;; files (like this one) were written from scratch after the fork ;;;; from CMU CL. -;;;; +;;;; ;;;; This software is in the public domain and is provided with ;;;; absolutely no warranty. See the COPYING and CREDITS files for ;;;; more information. @@ -17,4 +17,8 @@ (assert (eq *foo* (find-package ""))) (assert (delete-package "")) -(sb-ext:quit :unix-status 104) +(handler-case + (export :foo) + (package-error (c) (princ c)) + (:no-error (&rest args) (error "(EXPORT :FOO) returned ~S" args))) +