Re: LIST-TABLES problem on LispWorks
"Bill Atkins" <[email protected]> Sun, 13 Aug 2006 21:01:27 -0400
| Newsgroups | gmane.lisp.clsql.devel |
|---|---|
| Message-ID | <[email protected]> |
I got the UFFI tests to pass by changing ensure-char-storable in uffi/src/objects.lisp to: (defmacro ensure-char-storable (obj) #+(or digitool (and lispworks (not lispworks5.0))) obj #+(or lispworks allegro lispworks5.0 cmu sbcl scl openmcl) `(char-code ,obj)) However, the CLSQL problem still exists. I cleaned out all my fasls, did a make clean in the clsql/uffi directory, and rebuilt, but I still get the same output from LIST-TABLES. I'll let you know if I make any progress on the CLSQL problem. Bill On 8/13/06, Kevin Rosenberg <kevin-HJRc7zDS/[email protected]> wrote: > Bill Atkins wrote: > > I get a failed test from UFFI: > > [...] > > (UFFI:CONVERT-FROM-FOREIGN-STRING UFFI-TESTS::FS)) > > Expected value: "a" > > Actual value: "A??X????". > > That test passes on LW 4.4. I think that's likely related to the > failure you're seeing with LW 5. As is, it appears that UFFI (and > consequentially CLSQL) are broken on LW5. Patches would be welcomed. > > I'll also look at my budget, but I don't think I'll be purchasing > Lispworks 5 in the near future. > > Kevin > -- Bill Atkins