error in testsuite after cvs update



>>>>> "Raymond" == Raymond Toy  writes:

    Raymond> In any case, I see that it's failing on this test:

    Raymond> (c2:3^(-1/3)/gamma(1/3),closeto(-airy_dai(0)-c2,1.0e-15));

    Raymond> And airy_dai(0),numer causes an error about NIL not being a
    Raymond> double-float.

    Raymond> At least with cmucl.

These and a few other minor problems preventing the test suite from
finishing have been fixed.  They all stem from the simple problem that
CMUCL is fairly picky about things like

      
   (let (z)
     (declare (double-float z))
     (setf z 1d0)
     ...)

because Z is initialized to NIL.

Ray