[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (g
From: |
Simon Josefsson |
Subject: |
Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)' |
Date: |
Fri, 20 Jan 2012 12:56:21 +0100 |
User-agent: |
Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (gnu/linux) |
address@hidden (Ludovic Courtès) writes:
> Hi Simon,
>
> Simon Josefsson <address@hidden> skribis:
>
>> Thanks, I've installed the patch. However it still doesn't work, now
>> one of the tests fails (see make check output below). The test looks
>> quite simple to me, but I can't seem to get a backtrace?
>>
>> address@hidden:~/src/gnutls/guile master$ ./pre-inst-guile
>> guile> (use-modules (gnutls)
>> (gnutls build tests))
>> guile> (run-test
>> (lambda ()
>> (let ((s (make-session connection-end/server)))
>> (catch 'gnutls-error
>> (lambda ()
>> (handshake s))
>> (lambda (key err function . currently-unused)
>> (and (eq? key 'gnutls-error)
>> err
>> (string? (error->string err))
>> (eq? function 'handshake)))))))
>
> Can you try just the ‘let’ expression? (‘run-test’ swallows any
> exceptions and calls (exit 1).)
It just fails:
address@hidden:~/src/gnutls/guile master$ ./pre-inst-guile
guile> (use-modules (gnutls) (gnutls build tests))
guile> (let ((s (make-session connection-end/server)))
(catch 'gnutls-error
(lambda ()
(handshake s))
(lambda (key err function . currently-unused)
(and (eq? key 'gnutls-error)
err
(string? (error->string err))
(eq? function 'handshake)))))
#f
guile>
Evaluation handshake gives some more information, but I'm not sure what
to do about it:
guile> (let ((s (make-session connection-end/server)))
(handshake s))
Backtrace:
In standard input:
11: 0* (let* ((s (make-session connection-end/server))) (handshake s))
12: 1 [handshake #<session 7f74e209aaa0>]
standard input:12:1: In procedure handshake in expression (handshake s):
standard input:12:1: unhandled-exception: gnutls-error #f handshake
ABORT: (misc-error)
guile>
/Simon
- make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/16
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/16
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/17
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/17
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/18
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/18
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/19
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/19
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)',
Simon Josefsson <=
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/20
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/23
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/24
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Simon Josefsson, 2012/01/25
- Re: make distcheck failure in gnutls-guile 'ERROR: no code for module (gnutls)', Ludovic Courtès, 2012/01/25