X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farith.pure.lisp;h=8d1d12b2fccef389ac0a3ed20d29e37ce05b993b;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=959e2c100340db6ff44adbade52f28063cac1327;hpb=80d37651bc4cba800bbf2ba38ea720d734fbae4a;p=sbcl.git diff --git a/tests/arith.pure.lisp b/tests/arith.pure.lisp index 959e2c1..8d1d12b 100644 --- a/tests/arith.pure.lisp +++ b/tests/arith.pure.lisp @@ -106,7 +106,10 @@ (let* ((x (random most-positive-fixnum)) (x2 (* x 2)) (x3 (* x 3))) - (let ((fn (handler-bind ((sb-ext:compiler-note #'error)) + (let ((fn (handler-bind ((sb-ext:compiler-note + (lambda (c) + (when (<= x3 most-positive-fixnum) + (error c))))) (compile nil `(lambda (y) (declare (optimize speed) (type (integer 0 3) y)) @@ -203,3 +206,17 @@ ;;; ASH of a negative bignum by a bignum count would erroneously ;;; return 0 prior to sbcl-0.8.4.4 (assert (= (ash (1- most-negative-fixnum) (1- most-negative-fixnum)) -1)) + +;;; Whoops. Too much optimization in division operators for 0 +;;; divisor. +(macrolet ((frob (name) + `(let ((fn (compile nil '(lambda (x) + (declare (optimize speed) (fixnum x)) + (,name x 0))))) + (assert (raises-error? (funcall fn 1) division-by-zero))))) + (frob mod) + (frob truncate) + (frob rem) + (frob /) + (frob floor) + (frob ceiling))