X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fsmoke.impure.lisp;h=baeba3100ec2779ee7d2c5d90053005e6bb981d0;hb=6501a925cc45f347d1243ce10d34e8b7202ae917;hp=a627d0626cc3bea8e68cb27b7414422a25ff54dc;hpb=079ef9dad558ca07cb8178ef428bf738112174fa;p=sbcl.git diff --git a/tests/smoke.impure.lisp b/tests/smoke.impure.lisp index a627d06..baeba31 100644 --- a/tests/smoke.impure.lisp +++ b/tests/smoke.impure.lisp @@ -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. @@ -31,7 +31,6 @@ (assert (typep (in-package :cl-user) 'package)) ;;; PROFILE should run without obvious breakage -#-darwin (progn (defun profiled-fun () (random 1d0)) @@ -52,12 +51,12 @@ (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)) @@ -74,4 +73,3 @@ (assert (equal (funcall fn 1 2 3) '(1 2 3)))) ;;; success -(quit :unix-status 104)