Fix make-array transforms.
[sbcl.git] / tests / smoke.impure.lisp
index a7130a7..f0069a7 100644 (file)
@@ -7,7 +7,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.
 (assert (= (oidentity +const+) 1))
 (handler-bind
     ((sb-ext:defconstant-uneql
-        (lambda (c) (abort c))))
+         (lambda (c) (abort c))))
   (defconstant +const+ 3))
 (assert (= (oidentity +const+) 1))
 (handler-bind
     ((sb-ext:defconstant-uneql
-        (lambda (c) (continue c))))
+         (lambda (c) (continue c))))
   (defconstant +const+ 3))
 (assert (= (oidentity +const+) 3))
 
   (assert (equal (funcall fn 1) '(1)))
   (assert (equal (funcall fn 1 2 3) '(1 2 3))))
 
+;;; Failure to save a core is an error
+(with-test (:name :save-lisp-and-die-error)
+  (assert (eq :oops
+              (handler-case (save-lisp-and-die "/")
+                (error () :oops)))))
+
 ;;; success
-(quit :unix-status 104)