X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fexhaust.impure.lisp;h=79f44a4e671941dacb213241956dd348456179f5;hb=c43e3ee7e99bf8116402c2e6a90320b2e92b391b;hp=bc4dd7bbda2abe3584e8fdbe42f949f2a26f18ec;hpb=83ae90d536713f2cb5ef44f0cb768da9489d6432;p=sbcl.git diff --git a/tests/exhaust.impure.lisp b/tests/exhaust.impure.lisp index bc4dd7b..79f44a4 100644 --- a/tests/exhaust.impure.lisp +++ b/tests/exhaust.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. @@ -23,8 +23,8 @@ ;;; and works at all optimization settings. However, it now signals a ;;; STORAGE-CONDITION instead of an ERROR. -(defun recurse () - (recurse) +(defun recurse () + (recurse) (recurse)) (defvar *count* 100) @@ -33,7 +33,7 @@ (assert (eq :exhausted (handler-case (recurse) - (storage-condition (c) + (storage-condition (c) (declare (ignore c)) :exhausted)))) @@ -71,4 +71,3 @@ (assert (= exhaust-count recurse-count *count*))) ;;; OK! -(quit :unix-status 104)