* make check fails (guile 1.4.1.97)
@ 2004-01-16 12:45 Andreas Voegele
2004-01-17 10:13 ` Thien-Thi Nguyen
2004-01-18 20:57 ` Thien-Thi Nguyen
0 siblings, 2 replies; 6+ messages in thread
From: Andreas Voegele @ 2004-01-16 12:45 UTC (permalink / raw)
When I run "make check" after building guile 1.4.1.97 (under
Linux/i386 with gcc 3.3.2, binutils 2.14 and glibc 2.3.2) one test
fails:
[...]
FAIL: r4rs.test: (6 9): (#<procedure leaf-eq? (x y)> (a (b (c))) ((a) b c))
UNRESOLVED: symbols.test: gensym: does not accept a symbol prefix
Totals for this test run:
passes: 2279
failures: 1
unexpected passes: 0
expected failures: 17
unresolved test cases: 13
untested test cases: 0
unsupported test cases: 28
errors: 0
FAIL: check-guile
===================
1 of 1 tests failed
===================
Can anyone reproduce this error?
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make check fails (guile 1.4.1.97)
2004-01-16 12:45 make check fails (guile 1.4.1.97) Andreas Voegele
@ 2004-01-17 10:13 ` Thien-Thi Nguyen
2004-01-18 20:57 ` Thien-Thi Nguyen
1 sibling, 0 replies; 6+ messages in thread
From: Thien-Thi Nguyen @ 2004-01-17 10:13 UTC (permalink / raw)
Cc: guile-user
From: Andreas Voegele <voegelas@gmx.net>
Date: Fri, 16 Jan 2004 13:45:56 +0100
Linux/i386 with gcc 3.3.2, binutils 2.14 and glibc 2.3.2
FAIL: r4rs.test: (6 9): (#<procedure leaf-eq? (x y)> [...])
could you replace the `leaf-eq?' proc in r4rs.test w/ the following and
post or email the output of "export DEBUG=1 ; ./check-guile r4rs.test"
run from $(top_builddir)?
(define (leaf-eq? x y)
(let* ((eot (list 'eot))
(xf (next-leaf-generator x eot))
(yf (next-leaf-generator y eot)))
(letrec ((loop (lambda (x y)
(pk 'x x 'y y)
(cond ((not (eq? x y)) #f)
((eq? eot x) #t)
(else (loop (xf) (yf)))))))
(loop (xf) (yf)))))
there is an extra `pk' here, to see where things are failing. in the
meantime i'll try to find a system where those software versions are
installed (or install them locally but that will take more time). if
anyone has a handy ssh-able shell account dmz'd somewhere w/ the above
software that i can use temporarily to debug this, feel free to ping me
off-list.
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make check fails (guile 1.4.1.97)
2004-01-16 12:45 make check fails (guile 1.4.1.97) Andreas Voegele
2004-01-17 10:13 ` Thien-Thi Nguyen
@ 2004-01-18 20:57 ` Thien-Thi Nguyen
2004-01-19 17:46 ` Andreas Voegele
1 sibling, 1 reply; 6+ messages in thread
From: Thien-Thi Nguyen @ 2004-01-18 20:57 UTC (permalink / raw)
Cc: guile-user
From: Andreas Voegele <voegelas@gmx.net>
Date: Fri, 16 Jan 2004 13:45:56 +0100
Linux/i386 with gcc 3.3.2, binutils 2.14 and glibc 2.3.2
Can anyone reproduce this error?
fwiw, 1.4.1.98 builds and passes "make check" on an i686 w/ gcc 3.3.2,
ld (binutils) 2.14.90.0.6, and /lib/libc-2.3.2.so. i was not able to
reproduce the described problem w/ 1.4.1.97 or intermediate versions
w/ this configuration. perhaps upgrading binutils would help?
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make check fails (guile 1.4.1.97)
2004-01-18 20:57 ` Thien-Thi Nguyen
@ 2004-01-19 17:46 ` Andreas Voegele
2004-01-19 18:37 ` Thien-Thi Nguyen
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Voegele @ 2004-01-19 17:46 UTC (permalink / raw)
Cc: guile-user
Thien-Thi Nguyen <ttn@surf.glug.org> writes:
> From: Andreas Voegele <voegelas@gmx.net>
> Date: Fri, 16 Jan 2004 13:45:56 +0100
>
> Linux/i386 with gcc 3.3.2, binutils 2.14 and glibc 2.3.2
> Can anyone reproduce this error?
>
> fwiw, 1.4.1.98 builds and passes "make check" on an i686 w/ gcc 3.3.2,
> ld (binutils) 2.14.90.0.6, and /lib/libc-2.3.2.so. i was not able to
> reproduce the described problem w/ 1.4.1.97 or intermediate versions
> w/ this configuration. perhaps upgrading binutils would help?
I figured out that it depends on the CFLAGS settings whether the test
fails or not. I forgot to mention the flags since I use a generic
script to build most packages. By the default "-O3 -march=i586
-fomit-frame-pointer" is used. The strange thing is that other tests
fail when Guile 1.4 is built with "-g" or "-O", for example. The
tests succeed when I unset CFLAGS. No problems with Guile 1.6, no
matter which CFLAGS are used.
BTW, it seems that Guile 1.4 doesn't support DESTDIR fully.
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make check fails (guile 1.4.1.97)
2004-01-19 17:46 ` Andreas Voegele
@ 2004-01-19 18:37 ` Thien-Thi Nguyen
2004-01-21 16:30 ` Thien-Thi Nguyen
0 siblings, 1 reply; 6+ messages in thread
From: Thien-Thi Nguyen @ 2004-01-19 18:37 UTC (permalink / raw)
Cc: guile-user
From: Andreas Voegele <voegelas@gmx.net>
Date: Mon, 19 Jan 2004 18:46:49 +0100
[problems related to CFLAGS]
No problems with Guile 1.6, no
matter which CFLAGS are used.
i'll take a peek at the 1.6 configuration for clues.
BTW, it seems that Guile 1.4 doesn't support DESTDIR fully.
what behavior do you observe?
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: make check fails (guile 1.4.1.97)
2004-01-19 18:37 ` Thien-Thi Nguyen
@ 2004-01-21 16:30 ` Thien-Thi Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Thien-Thi Nguyen @ 2004-01-21 16:30 UTC (permalink / raw)
Cc: guile-user
From: Thien-Thi Nguyen <ttn@surf.glug.org>
Date: Mon, 19 Jan 2004 19:37:47 +0100
From: Andreas Voegele <voegelas@gmx.net>
Date: Mon, 19 Jan 2004 18:46:49 +0100
BTW, it seems that Guile 1.4 doesn't support DESTDIR fully.
what behavior do you observe?
probably a better question is: could you post your build script?
that way i can test against it directly.
thi
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-01-21 16:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-16 12:45 make check fails (guile 1.4.1.97) Andreas Voegele
2004-01-17 10:13 ` Thien-Thi Nguyen
2004-01-18 20:57 ` Thien-Thi Nguyen
2004-01-19 17:46 ` Andreas Voegele
2004-01-19 18:37 ` Thien-Thi Nguyen
2004-01-21 16:30 ` Thien-Thi Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).