X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler.pure.lisp;h=53b9c67027042be1297712fc12114a622a631f0e;hb=422b88abf96f4842a3d0999cd3b80d96f5a153d6;hp=9eac7fb3ecaf5e8fac388f688b942cb5f4d9d671;hpb=19b57ee6640261133a179417c814ca38039e1ab1;p=sbcl.git diff --git a/tests/compiler.pure.lisp b/tests/compiler.pure.lisp index 9eac7fb..53b9c67 100644 --- a/tests/compiler.pure.lisp +++ b/tests/compiler.pure.lisp @@ -140,3 +140,10 @@ ;;; bug caught and fixed by Raymond Toy cmucl-imp 2002-07-10: &REST ;;; variable is not optional. (assert (null (ignore-errors (eval '(funcall (lambda (&rest) 12)))))) + +;;; on the PPC, we got the magic numbers in undefined_tramp wrong for +;;; a while; fixed by CSR 2002-07-18 +(multiple-value-bind (value error) + (ignore-errors (some-undefined-function)) + (assert (null value)) + (assert (eq (cell-error-name error) 'some-undefined-function)))