X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler-1.impure-cload.lisp;h=d7db6c003ec39b8c16cc3b12ae110cd5760776da;hb=20102d9bd3c62691cc2c27725ff7ffdcab54ab2b;hp=1eb8e3d88cd438b533d866c84586986e98537746;hpb=d9e8b9ff41d7eedf7401fc7c8b473318a1ce33d4;p=sbcl.git diff --git a/tests/compiler-1.impure-cload.lisp b/tests/compiler-1.impure-cload.lisp index 1eb8e3d..d7db6c0 100644 --- a/tests/compiler-1.impure-cload.lisp +++ b/tests/compiler-1.impure-cload.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. @@ -39,7 +39,7 @@ (declaim (ftype (function (real) (values integer single-float)) valuesify)) (defun valuesify (x) (values (round x) - (coerce x 'single-float))) + (coerce x 'single-float))) (defun exercise-valuesify (x) (multiple-value-bind (i f) (valuesify x) (declare (type integer i)) @@ -112,9 +112,9 @@ (when (consp (aref x 0)) (aref x 0))) (assert (raises-error? - (array-element-type-handling - (make-array 3 :element-type t :initial-element 0)) - type-error)) + (array-element-type-handling + (make-array 3 :element-type t :initial-element 0)) + type-error)) ;;; bug 220: type check inserted after all arguments in MV-CALL caused ;;; failure of stack analysis @@ -209,7 +209,7 @@ (assert (raises-error? (bug231b 0 0) type-error)) ;;; A bug appeared in flaky7_branch. Python got lost in unconverting -;;; embedded tail calls during let-convertion. +;;; embedded tail calls during let-conversion. (defun bug239 (bit-array-2 &optional result-bit-array) (declare (type (array bit) bit-array-2) (type (or (array bit) (member t nil)) result-bit-array)) @@ -238,5 +238,3 @@ (find-class 'some-structure nil)) (eval-when (:load-toplevel) (assert (typep (find-class 'some-structure) 'class))) - -(sb-ext:quit :unix-status 104) ; success