Closed lantw44 closed 4 years ago
Hello,
could you please send me the following files from tests
directory after the test fails?
server.log
server-libssh.log
server-errors.log
Thanks,
Artyom
server.log server-libssh.log server-errors.log is empty.
I also had this error, running against libssh 0.8.3-1
.
I narrowed it to (test-assert-with-log "server-set!, valid values"
in tests/server.scm
. Specifically, these lines:
,(if (= %libssh-minor-version 7)
(list 'hostkey %rsakey %dsakey)
'(hostkey "ssh-rsa" "ssh-dss"))
My scheme knowledge is very rusty and I don't know this library at all, but the test passed if I deleted these lines or replaced them with ,(list 'hostkey %rsakey %dsakey)
Perhaps this conditional should check if libssh-minor-version
is >=
instead of =
?
I also had this error, running against libssh 0.8.5-1.
@pushcx you're right, it should be (>= %libssh-minor-version 7)
(works for me).
It was found on Arch Linux and it seems to be always reproducible:
The libssh version used to run the test is 0.8.2. test-suite.log