Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 1630)

Ticket Resolution Summary Owner Reporter
#684 duplicate 'make check' fails (buildid bce4666, 2011-9-3) jrapdx
Description

Chicken compiles without problems, but 'make check' fails on import-test.scm. (Same error message as reported in http://tests.call-cc.org/make-check-errors/2011-09-03.txt.)

The error occurs with (require-library (srfi 4)) but not (require-library srfi-4).

Tracked the problem to 'eval.scm', line 1306:

(let-values (((exp f2) (doit rid rid))) ...

(doit ...) returns 3 values, but only 2 values are permitted.

Not clear what is best way to resolve issue, as possibly it has more than local effects. (Simplistically, adding a dummy variable, e.g., (exp f2 xxx), allows the import tests to succeed, but that would seem to be a very dubious resolution.)

#965 fixed 'test -e' is not supported on Solaris sh mikele mikele
Description

While building chicken on Solaris10, the script identify.sh failed because of 'test -e'. Suggested fix: use 'test -f'. Same job, more portable.

#1096 fixed (abs most-negative-fixnum) does return negative value Christian Kellermann
Description

Found by David Krenzlin on #chicken

$ csi -n
CHICKEN
(c) 2008-2014, The Chicken Team
(c) 2000-2007, Felix L. Winkelmann
Version 4.8.4 (rev 7dad446)
linux-unix-gnu-x86-64 [ 64bit manyargs dload ptables ]
compiled 2014-02-03 on devpool08 (Linux)
#;1> (abs most-negative-fixnum)
-4611686018427387904
#;2> (fixnum? most-negative-fixnum)
#t

Works fine with the numbers egg's version.

Note: See TracQuery for help on using queries.