* A few errors from current Git HEAD
@ 2010-07-25 21:27 Neil Jerram
2010-07-27 8:49 ` Ludovic Courtès
0 siblings, 1 reply; 6+ messages in thread
From: Neil Jerram @ 2010-07-25 21:27 UTC (permalink / raw)
To: Guile Development
Just in case these are not already well-known:
...
/home/neil/SW/Guile/master/test-suite/standalone/.libs/lt-test-srfi-1: error while loading shared libraries: libguile-2.0.so.18: cannot open shared object file: No such file or directory
FAIL: test-srfi-1
...
FAIL: net-db.test: getaddrinfo: no name
...
Running threads.test
<apparent hang, after waiting for a few minutes>
...
Neil
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A few errors from current Git HEAD
2010-07-25 21:27 A few errors from current Git HEAD Neil Jerram
@ 2010-07-27 8:49 ` Ludovic Courtès
2010-08-19 16:12 ` Andy Wingo
0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2010-07-27 8:49 UTC (permalink / raw)
To: guile-devel
Hi Neil,
Neil Jerram <neil@ossau.uklinux.net> writes:
> Just in case these are not already well-known:
>
> ...
> /home/neil/SW/Guile/master/test-suite/standalone/.libs/lt-test-srfi-1: error while loading shared libraries: libguile-2.0.so.18: cannot open shared object file: No such file or directory
> FAIL: test-srfi-1
Can you build ‘test-srfi-1’ with “V=1” (to get the full output)?
It seems that ‘test_srfi_1_LDADD’ in test-suite/standalone/Makefile.am
isn’t honored.
(I’m using the Automake 1.11.1 and Libtool 2.2.6b as well, but I don’t
have this problem.)
> FAIL: net-db.test: getaddrinfo: no name
Could you print the value of ERRCODE and also ‘(gai-strerror errcode)’
in this test?
Which version of glibc do you have?
> Running threads.test
> <apparent hang, after waiting for a few minutes>
> ...
Hmm, interesting. :-)
Could you attach gdb and ‘thread apply all bt’?
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A few errors from current Git HEAD
2010-07-27 8:49 ` Ludovic Courtès
@ 2010-08-19 16:12 ` Andy Wingo
2010-08-20 11:31 ` Ludovic Courtès
0 siblings, 1 reply; 6+ messages in thread
From: Andy Wingo @ 2010-08-19 16:12 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guile-devel
Hi,
On Tue 27 Jul 2010 01:49, ludo@gnu.org (Ludovic Courtès) writes:
> Neil Jerram <neil@ossau.uklinux.net> writes:
>
>> FAIL: net-db.test: getaddrinfo: no name
>
> Could you print the value of ERRCODE and also ‘(gai-strerror errcode)’
> in this test?
I just saw this this morning, in a coffeeshop that appears to use
OpenDNS for their DNS, which redirects not-found addresses to their own
servers. The error (for me) appears to be that the getaddrinfo actually
succeeded.
Indeed, getaddrinfo returned:
(#(0 2 1 6 #(2 1138180484 0) #f)
#(0 2 2 17 #(2 1138180484 0) #f)
#(0 2 3 0 #(2 1138180484 0) #f))
>> Running threads.test
>> <apparent hang, after waiting for a few minutes>
>> ...
>
> Hmm, interesting. :-)
>
> Could you attach gdb and ‘thread apply all bt’?
I think Dale and Jao have been seeing something like this for a long
time. I don't know what it is, though.
Andy
--
http://wingolog.org/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A few errors from current Git HEAD
2010-08-19 16:12 ` Andy Wingo
@ 2010-08-20 11:31 ` Ludovic Courtès
2010-08-20 16:15 ` Andy Wingo
0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2010-08-20 11:31 UTC (permalink / raw)
To: Andy Wingo; +Cc: guile-devel
Hello!
Andy Wingo <wingo@pobox.com> writes:
> On Tue 27 Jul 2010 01:49, ludo@gnu.org (Ludovic Courtès) writes:
>
>> Neil Jerram <neil@ossau.uklinux.net> writes:
>>
>>> FAIL: net-db.test: getaddrinfo: no name
>>
>> Could you print the value of ERRCODE and also ‘(gai-strerror errcode)’
>> in this test?
>
> I just saw this this morning, in a coffeeshop that appears to use
> OpenDNS for their DNS, which redirects not-found addresses to their own
> servers. The error (for me) appears to be that the getaddrinfo actually
> succeeded.
Oh, yes. Should we consider such situations or just ignore them? :-)
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A few errors from current Git HEAD
2010-08-20 11:31 ` Ludovic Courtès
@ 2010-08-20 16:15 ` Andy Wingo
2010-08-20 18:15 ` Ludovic Courtès
0 siblings, 1 reply; 6+ messages in thread
From: Andy Wingo @ 2010-08-20 16:15 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guile-devel
On Fri 20 Aug 2010 04:31, ludo@gnu.org (Ludovic Courtès) writes:
> Andy Wingo <wingo@pobox.com> writes:
>
>> On Tue 27 Jul 2010 01:49, ludo@gnu.org (Ludovic Courtès) writes:
>>
>>> Neil Jerram <neil@ossau.uklinux.net> writes:
>>>
>>>> FAIL: net-db.test: getaddrinfo: no name
>>>
>>> Could you print the value of ERRCODE and also ‘(gai-strerror errcode)’
>>> in this test?
>>
>> I just saw this this morning, in a coffeeshop that appears to use
>> OpenDNS for their DNS, which redirects not-found addresses to their own
>> servers. The error (for me) appears to be that the getaddrinfo actually
>> succeeded.
>
> Oh, yes. Should we consider such situations or just ignore them? :-)
Perhaps throw 'unresolved ? Or just punt on the issue :)
Andy
--
http://wingolog.org/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: A few errors from current Git HEAD
2010-08-20 16:15 ` Andy Wingo
@ 2010-08-20 18:15 ` Ludovic Courtès
0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2010-08-20 18:15 UTC (permalink / raw)
To: Andy Wingo; +Cc: guile-devel
Howdy!
Andy Wingo <wingo@pobox.com> writes:
> On Fri 20 Aug 2010 04:31, ludo@gnu.org (Ludovic Courtès) writes:
>
>> Andy Wingo <wingo@pobox.com> writes:
>>
>>> On Tue 27 Jul 2010 01:49, ludo@gnu.org (Ludovic Courtès) writes:
>>>
>>>> Neil Jerram <neil@ossau.uklinux.net> writes:
>>>>
>>>>> FAIL: net-db.test: getaddrinfo: no name
>>>>
>>>> Could you print the value of ERRCODE and also ‘(gai-strerror errcode)’
>>>> in this test?
>>>
>>> I just saw this this morning, in a coffeeshop that appears to use
>>> OpenDNS for their DNS, which redirects not-found addresses to their own
>>> servers. The error (for me) appears to be that the getaddrinfo actually
>>> succeeded.
>>
>> Oh, yes. Should we consider such situations or just ignore them? :-)
>
> Perhaps throw 'unresolved ? Or just punt on the issue :)
The latter then. :-)
Ludo’.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-08-20 18:15 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-25 21:27 A few errors from current Git HEAD Neil Jerram
2010-07-27 8:49 ` Ludovic Courtès
2010-08-19 16:12 ` Andy Wingo
2010-08-20 11:31 ` Ludovic Courtès
2010-08-20 16:15 ` Andy Wingo
2010-08-20 18:15 ` Ludovic Courtès
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).