unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: ludo@gnu.org (Ludovic Courtès)
To: Artyom Poptsov <poptsov.artyom@gmail.com>
Cc: guix-devel@gnu.org
Subject: Re: [ANN] Guile-SSH 0.7.0 released
Date: Mon, 08 Sep 2014 10:12:40 +0200	[thread overview]
Message-ID: <878ulujzt3.fsf@gnu.org> (raw)
In-Reply-To: <878um4tpo1.fsf@elephant.savannah> (Artyom Poptsov's message of "Sun, 31 Aug 2014 23:38:54 +0400")

[-- Attachment #1: Type: text/plain, Size: 1206 bytes --]

Hello,

Thanks for the new release!

My attempt to upgrade the Guile-SSH package in Guix resulted in a bunch
of test failures (logs attached.)

The logs contain fishy errors like:

  ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /tmp/nix-build-guile-ssh-0.7.0.drv-0/guile-ssh-0.7.0/tests/./client-server.scm:272:34: end of file

Looking at, e.g., client-server.scm, I see several tests that call
‘primitive-fork’, but where the child is not guaranteed to exit, which
could lead to several issues (where several processes would end up
running the test suite.)

To be safe, the code of all child processes should be wrapped in a
‘dynamic-wind’:

  (let ((pid (primitive-fork)))
    (if (zero? pid)
        (dynamic-wind  ;child
          (const #f)
          (lambda ()
            ...)
          (lambda ()
            (primitive-exit 1)))
        ...   ;parent
        ))

That way, even if the child throws an uncaught exception, it will exit
and not pollute the rest of the tests.        

I’ve not investigated further, but I think that’s part of the problem.

Thanks,
Ludo’.

PS: Sorry for the big set of attachments.


[-- Attachment #2: client-server-errors.log --]
[-- Type: application/octet-stream, Size: 91698 bytes --]

In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10806f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 1058d80 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d518d0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f8e760>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure ce1240 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0d40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cbd390 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server d47970>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3b80 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guIn ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d518d0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f8e760>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure ce1240 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0d40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cdd0c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server d89080>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0dc0 at ice-9/booIn ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 12d0960>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9630 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ec2c20>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0880 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure caf690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server d04ce0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure d558c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
ile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d65ba0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f7def0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f580c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
t-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d7cf90 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 1318e90>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12a0740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10fc6c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3fc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d58ed0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f525d0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9f90 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ea5590>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb04c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 12d0960>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9630 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ec2c20>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0880 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
ile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
t-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server c6a0b0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d5d900 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003ee0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f582c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d41720 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f52000>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0a00 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d3fd50 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f52c70>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0240 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cdd840 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server e3feb0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de30c0 at ice-9/boIn ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d518d0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f8e760>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure ce1240 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0d40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cbd390 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003f80>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3b80 at ice-9/bIn ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10fc6c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3fc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d58ed0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f525d0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9f90 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ea5590>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb04c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 17 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 16 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 15 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 14 [eval # #]
In ice-9/boot-9.scm:
2401: 13 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 12 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 11 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 10 [#<procedure bca030 ()>]
In unknown file:
   ?: 9 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 8 [eval # #]
 411: 7 [eval # #]
In ice-9/boot-9.scm:
 157: 6 [catch #t #<procedure cafc30 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 5 [eval # #]
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure d55c80 at ice-9/boot-9.scm:97:6 (tIn ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d518d0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f8e760>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure ce1240 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0d40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cdd0c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003f80>]
In ice-9/boot-9.scm:
 102ot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
hrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server c6a0b0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d5d900 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f582c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d17ba0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server eff110>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0940 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110ac00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 104d020>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d275a0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ea5d70>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f26900 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 12d0960>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9630 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0880 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf6480 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ef7410>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0940 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10fc6c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3fc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d58ed0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f525d0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9f90 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb04c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf6690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ee9b20>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0a40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
oot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110d6f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 10a74a0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server c6a0b0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d5d900 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003ee0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f582c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server c6a0b0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d5d900 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f582c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d3fd50 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f52c70>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0240 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110ac00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d65480 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f8cde0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58140 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
: 2 [#<procedure eb0dc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 17 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 16 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 15 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 14 [eval # #]
In ice-9/boot-9.scm:
2401: 13 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 12 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 11 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 10 [#<procedure bca030 ()>]
In unknown file:
   ?: 9 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 8 [eval # #]
 411: 7 [eval # #]
In ice-9/boot-9.scm:
 157: 6 [catch #t #<procedure c66d50 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 5 [eval # #]
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure d55a00 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d3fd50 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0240 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d2a120 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server ee23e0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f26a40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
oot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110d6f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
: 2 [#<procedure eb0dc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c66d50 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure d55a00 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10fc6c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure de3fc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d58ed0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server f525d0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58340 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9f90 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb04c0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf6690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003f80>]
In ice-9/boot-9.scm:
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 10d16c0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10fa540 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d6a690 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 12d0960>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 12c5180 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf9630 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0880 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure cf6480 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003f80>]
In ice-9/boot-9.sc 102: 2 [#<procedure eb0a40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
m:
 102: 2 [#<procedure eb0940 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110ac00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-listen #<server 104d020>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d275a0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003fa0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f26900 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure c5df00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [write-known-host! #<session bob@127.0.0.1 (connected) 1003f00>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure eb0780 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 110ac00 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 411: 4 [eval # #]
In unknown file:
   ?: 3 [get-server-public-key #<session bob@127.0.0.1 (connected) 1003fc0>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 10faa40 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure afa100> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure afa100>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure bba880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack #<procedure b75520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 9 [#<procedure bca030 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./client-server.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure d65480 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [authenticate-server #<session bob@127.0.0.1 (disconnected) 1003f80>]
In ice-9/boot-9.scm:
 102: 2 [#<procedure f58140 at ice-9/boot-9.scm:97:6 (thrown-k . args)> wrong-type-arg ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]

[-- Attachment #3: client-server-libssh.log --]
[-- Type: application/octet-stream, Size: 68746 bytes --]

[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_userauth_request_service: Failed to request "ssh-userauth" service
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket exception callback: 2 (104)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket error: Connection reset by peer
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, ok", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket exception callback: 2 (104)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket error: Connection reset by peer
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket exception callback: 2 (104)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket error: Connection reset by peer
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket exception callback: 2 (104)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket error: Connection reset by peer
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket exception callback: 2 (104)
[2014-07-20T10:32:18+0200, "userauth-none!, success", 1]: ssh_socket_exception_callback: Socket error: Connection reset by peer
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:23+0200, "connect!, disconnect!", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:33+0200, "connect!, disconnect!", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:34+0200, "get-protocol-version", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:44+0200, "get-protocol-version", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_client_connection_callback: SSH server banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "authenticate-server, not-known", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:31:56+0200, "authenticate-server, not-known", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:31:57+0200, "authenticate-server, ok", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:07+0200, "authenticate-server, ok", 1]: ssh_write_knownhost: No current crypto context
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:08+0200, "get-public-key-hash", 1]: socket_callback_connected: Socket connection callback: 1 (0)
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_connect: Timeout connecting to 127.0.0.1
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_is_server_known: ssh_is_host_known called without cryptographic context
[2014-07-20T10:32:18+0200, "get-public-key-hash", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer
[2014-07-20T10:32:19+0200, "userauth-none!, success", 1]: ssh_connect: libssh 0.6.3 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_pthread
[2014-07-20T10:32:19+0200, "userauth-none!, success", 1]: socket_callback_connected: Socket connection callback: 2 (111)
[2014-07-20T10:32:19+0200, "userauth-none!, success", 1]: socket_callback_connected: Connection refused
[2014-07-20T10:32:19+0200, "userauth-none!, success", 1]: ssh_socket_nonblocking_flush: Writing packet: error on socket (or connection closed): Connection reset by peer

[-- Attachment #4: client-server.log --]
[-- Type: application/octet-stream, Size: 33720 bytes --]

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note:Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "authenticate-server, not-known"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, not-known"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test begin:
  test-name: "get-publ;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guiTest end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
 ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success

[-- Attachment #5: key.log --]
[-- Type: application/octet-stream, Size: 3339 bytes --]

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
In ice-9/boot-9.scm:
 157: 15 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 14 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 13 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 12 [eval # #]
In ice-9/boot-9.scm:
2401: 11 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 10 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 9 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 8 [#<procedure ad7030 ()>]
In unknown file:
   ?: 7 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 432: 6 [eval # #]
 411: 5 [eval # #]
In ice-9/boot-9.scm:
 157: 4 [catch #t #<procedure e62fc0 at ice-9/eval.scm:416:20 ()> ...]
In unknown file:
   ?: 3 [private-key-from-file "/data/src/guile-ssh/tests/ecdsakey"]
In ice-9/boot-9.scm:
 102: 2 [#<procedure b72740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 15 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 14 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 13 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 12 [eval # #]
In ice-9/boot-9.scm:
2401: 11 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 10 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 9 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 8 [#<procedure ad7030 ()>]
In unknown file:
   ?: 7 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 432: 6 [eval # #]
 411: 5 [eval # #]
In ice-9/boot-9.scm:
 157: 4 [catch #t #<procedure cf97e0 at ice-9/eval.scm:416:20 ()> ...]
In unknown file:
   ?: 3 [public-key-from-file "/data/src/guile-ssh/tests/ecdsakey.pub"]
In ice-9/boot-9.scm:
 102: 2 [#<procedure b72a80 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
Backtrace:
In ice-9/boot-9.scm:
 157: 10 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 9 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 8 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 7 [eval # #]
In ice-9/boot-9.scm:
2401: 6 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 5 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 4 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 3 [#<procedure ad7030 ()>]
In unknown file:
   ?: 2 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 453: 1 [eval # ()]
In unknown file:
   ?: 0 [private-key-from-file "/data/src/guile-ssh/tests/ecdsakey"]

ERROR: In procedure private-key-from-file:
ERROR: Throw to key `guile-ssh-error' with args `("private-key-from-file" "Unable to import a key from the file" "/data/src/guile-ssh/tests/ecdsakey" #f)'.
%%%% Starting test key  (Writing full log to "key.log")
FAIL private-key-from-file
FAIL public-key-from-file

[-- Attachment #6: log.log --]
[-- Type: application/octet-stream, Size: 513 bytes --]

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
%%%% Starting test log  (Writing full log to "log.log")
# of expected passes      4
 result-kind: pass
  actual-value: #t
Test begin:
  test-name: "set-logging-callback!, default (libssh)"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "set-logging-callback!, default"
Test end:
  result-kind: pass
  actual-value: #t
Group end: log
# of expected passes      4

[-- Attachment #7: server-client-errors.log --]
[-- Type: application/octet-stream, Size: 3021 bytes --]

In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure 1317840> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure 1317840>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack ...]
1729: 9 [#<procedure 134ac60 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./server-client.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 173d6f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 1821700 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure 1317840> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure 1317840>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack ...]
1729: 9 [#<procedure 134ac60 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./server-client.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 173d6f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 1821700 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure 1317840> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure 1317840>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2401: 12 [save-module-excursion #<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 11 [#<procedure 1334880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 10 [%start-stack load-stack ...]
1729: 9 [#<procedure 134ac60 ()>]
In unknown file:
   ?: 8 [primitive-load "/data/src/libguile-ssh/tests/./server-client.scm"]
In ice-9/eval.scm:
 432: 7 [eval # #]
 411: 6 [eval # #]
In ice-9/boot-9.scm:
 157: 5 [catch #t #<procedure 148c0f0 at ice-9/eval.scm:416:20 ()> ...]
In ice-9/eval.scm:
 432: 4 [eval # #]
In unknown file:
   ?: 3 [server-handle-key-exchange #]
In ice-9/boot-9.scm:
 102: 2 [#<procedure 155a900 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]

[-- Attachment #8: server-client-libssh.log --]
[-- Type: application/octet-stream, Size: 1017 bytes --]

[2014-07-20T10:31:35+0200, "server-message-get", 1]: ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:35+0200, "server-message-get", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:35+0200, "server-message-get", 1]: dh_handshake_server: Could not sign the session id
[2014-07-20T10:31:35+0200, "server-message-get", 1]: ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:35+0200, "server-message-get", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:35+0200, "server-message-get", 1]: dh_handshake_server: Could not sign the session id
[2014-07-20T10:31:46+0200, "message-get-type", 1]: ssh_server_connection_callback: SSH client banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "message-get-type", 1]: ssh_analyze_banner: Analyzing banner: SSH-2.0-libssh-0.6.3
[2014-07-20T10:31:46+0200, "message-get-type", 1]: dh_handshake_server: Could not sign the session id

[-- Attachment #9: server-client.log --]
[-- Type: application/octet-stream, Size: 3683 bytes --]

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0Test end:
  result-kind: pass
  actual-value: #<session #<undefined>@#<undefined> (disconnected) 180bfa0>
Test begin:
  test-name: "server-message-get"
    client: connected
    client: server authenticated
    client: client authenticated
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "message-get-type"
    client: connected
    client: server authenticated
    client: client authenticated
Test end:
  result-kind: fail
  actual-value: #f
Group end: server-client
# of expected passes      1
# of unexpected failures  2
er than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
FAIL server-message-get
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
FAIL server-message-get
FAIL message-get-type
# of expected passes      1
# of unexpected failures  2
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go

[-- Attachment #10: server.log --]
[-- Type: application/octet-stream, Size: 777 bytes --]

%%%% Starting test server  (Writing full log to "server.log")
# of expected passes      7
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; [2014/07/20 10:31:22.932136, 1] ssh_bind_options_set_algo: Setting method: no algorithm for method "server host key algo" (invalid value)

d values"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "make-server"
Test end:
  result-kind: pass
  actual-value: #<server 2b8ba00>
Test begin:
  test-name: "server-listen"
Test end:
  result-kind: pass
  actual-value: #t
Group end: server
# of expected passes      7

[-- Attachment #11: session.log --]
[-- Type: application/octet-stream, Size: 1079 bytes --]

%%%% Starting test session  (Writing full log to "session.log")
# of expected passes      9
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "session-set!, valid values"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "session-set!, invalid values"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "session-get"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "make-session"
Test end:
  result-kind: pass
  actual-value: #<session Random J. User@localhost (disconnected) 1040f00>
Test begin:
  test-name: "blocking-flush!"
Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "connected?, check that we are not connected"
Test end:
  result-kind: pass
  actual-value: #t
Group end: session
# of expected passes      9

[-- Attachment #12: sssh-ssshd.log --]
[-- Type: application/octet-stream, Size: 3134 bytes --]

;;; note: source file /data/src/guile-ssh/examples/ssshd.scm
;;;       newer than compiled /hoTest end:
  result-kind: pass
  actual-value: 27425
Test begin:
  test-name: "sssh, exec"
Test end:
  result-kind: fail
  actual-value: #f
Group end: sssh-ssshd
# of expected passes      1
# of unexpected failures  1
er.go
;;; note: source file /data/src/guile-ssh/ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file /data/src/guile-ssh/ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file /data/src/guile-ssh/ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file /data/src/guile-ssh/ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
;;; note: source file /data/src/guile-ssh/ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
---------- ssshd ----------
Using private RSA key: /data/src/guile-ssh/tests/rsakey
Using private DSA key: /data/src/guile-ssh/tests/dsakey
Listening on port:     12600
PID file:              ssshd.pid
---------- ssshd ----------
Using private RSA key: /data/src/guile-ssh/tests/rsakey
Using private DSA key: /data/src/guile-ssh/tests/dsakey
Listening on port:     12600
PID file:              ssshd.pid
;;; note: source file /data/src/guile-ssh/ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
;;; note: source file /data/src/guile-ssh/ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file /data/src/guile-ssh/ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file /data/src/guile-ssh/ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file /data/src/guile-ssh/ssh/version.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/version.go
Backtrace:
In ice-9/boot-9.scm:
 157: 6 [catch #t #<catch-closure 135d1e0> ...]
In unknown file:
   ?: 5 [apply-smob/1 #<catch-closure 135d1e0>]
In ice-9/boot-9.scm:
  63: 4 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 3 [eval # #]
 432: 2 [eval # #]
 411: 1 [eval # #]
In unknown file:
   ?: 0 [get-server-public-key #<session ludo@127.0.0.1 (connected) 1662fe0>]

ERROR: In procedure get-server-public-key:
ERROR: Throw to key `guile-ssh-error' with args `("get-server-public-key" "Unable to get the server key" #<session ludo@127.0.0.1 (connected) 1662fe0> #f)'.
%%%% Starting test sssh-ssshd  (Writing full log to "sssh-ssshd.log")
FAIL sssh, exec
# of expected passes      1
# of unexpected failures  1
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go

Some deprecated features have been used.  Set the environment
variable GUILE_WARN_DEPRECATED to "detailed" and rerun the
program to get more information.  Set it to "no" to suppress
this message.

[-- Attachment #13: test-suite.log --]
[-- Type: application/octet-stream, Size: 44251 bytes --]

===========================================
   Guile-SSH 0.6.0: tests/test-suite.log
===========================================

# TOTAL: 7
# PASS:  3
# SKIP:  0
# XFAIL: 0
# FAIL:  4
# XPASS: 0
# ERROR: 0

.. contents:: :depth: 2

FAIL: client-server
===================

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note:Test end:
  result-kind: pass
  actual-value: #t
Test begin:
  test-name: "authenticate-server, not-known"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, not-known"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "authenticate-server, ok"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test begin:
  test-name: "get-publ;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guiTest end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "get-public-key-hash"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "userauth-none!, success"
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
Test end:
  result-kind: fail
  actual-value: #f
 ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL get-protocol-version
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file ../ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
ERROR: In procedure primitive-load:
ERROR: In procedure scm_i_lreadparen: /data/src/libguile-ssh/tests/./client-server.scm:273:14: end of file
%%%% Starting test client-server  (Writing full log to "client-server.log")
FAIL authenticate-server, not-known
FAIL authenticate-server, ok
FAIL get-public-key-hash
FAIL userauth-none!, success

FAIL: server-client
===================

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0Test end:
  result-kind: pass
  actual-value: #<session #<undefined>@#<undefined> (disconnected) 180bfa0>
Test begin:
  test-name: "server-message-get"
    client: connected
    client: server authenticated
    client: client authenticated
Test end:
  result-kind: fail
  actual-value: #f
Test begin:
  test-name: "message-get-type"
    client: connected
    client: server authenticated
    client: client authenticated
Test end:
  result-kind: fail
  actual-value: #f
Group end: server-client
# of expected passes      1
# of unexpected failures  2
er than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
FAIL server-message-get
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
%%%% Starting test server-client  (Writing full log to "server-client.log")
(server-handle-key-exchange Socket error: disconnected #<session #<undefined>@#<undefined> (disconnected) 180bfa0> #f)
FAIL server-message-get
FAIL message-get-type
# of expected passes      1
# of unexpected failures  2
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/server.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/server.go
;;; note: source file ../ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file ../ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file ../ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go

FAIL: sssh-ssshd
================

;;; note: source file /data/src/guile-ssh/examples/ssshd.scm
;;;       newer than compiled /hoTest end:
  result-kind: pass
  actual-value: 27425
Test begin:
  test-name: "sssh, exec"
Test end:
  result-kind: fail
  actual-value: #f
Group end: sssh-ssshd
# of expected passes      1
# of unexpected failures  1
er.go
;;; note: source file /data/src/guile-ssh/ssh/message.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/message.go
;;; note: source file /data/src/guile-ssh/ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file /data/src/guile-ssh/ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file /data/src/guile-ssh/ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
;;; note: source file /data/src/guile-ssh/ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
---------- ssshd ----------
Using private RSA key: /data/src/guile-ssh/tests/rsakey
Using private DSA key: /data/src/guile-ssh/tests/dsakey
Listening on port:     12600
PID file:              ssshd.pid
---------- ssshd ----------
Using private RSA key: /data/src/guile-ssh/tests/rsakey
Using private DSA key: /data/src/guile-ssh/tests/dsakey
Listening on port:     12600
PID file:              ssshd.pid
;;; note: source file /data/src/guile-ssh/ssh/channel.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/channel.go
;;; note: source file /data/src/guile-ssh/ssh/session.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/session.go
;;; note: source file /data/src/guile-ssh/ssh/auth.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/auth.go
;;; note: source file /data/src/guile-ssh/ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
;;; note: source file /data/src/guile-ssh/ssh/version.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/version.go
Backtrace:
In ice-9/boot-9.scm:
 157: 6 [catch #t #<catch-closure 135d1e0> ...]
In unknown file:
   ?: 5 [apply-smob/1 #<catch-closure 135d1e0>]
In ice-9/boot-9.scm:
  63: 4 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 3 [eval # #]
 432: 2 [eval # #]
 411: 1 [eval # #]
In unknown file:
   ?: 0 [get-server-public-key #<session ludo@127.0.0.1 (connected) 1662fe0>]

ERROR: In procedure get-server-public-key:
ERROR: Throw to key `guile-ssh-error' with args `("get-server-public-key" "Unable to get the server key" #<session ludo@127.0.0.1 (connected) 1662fe0> #f)'.
%%%% Starting test sssh-ssshd  (Writing full log to "sssh-ssshd.log")
FAIL sssh, exec
# of expected passes      1
# of unexpected failures  1
;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go

Some deprecated features have been used.  Set the environment
variable GUILE_WARN_DEPRECATED to "detailed" and rerun the
program to get more information.  Set it to "no" to suppress
this message.

FAIL: key
=========

;;; note: source file ../srfi/srfi-64.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/srfi/srfi-64.go
;;; note: source file ../ssh/key.scm
;;;       newer than compiled /home/ludo/soft/share/guile/site/2.0/ssh/key.go
In ice-9/boot-9.scm:
 157: 15 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 14 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 13 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 12 [eval # #]
In ice-9/boot-9.scm:
2401: 11 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 10 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 9 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 8 [#<procedure ad7030 ()>]
In unknown file:
   ?: 7 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 432: 6 [eval # #]
 411: 5 [eval # #]
In ice-9/boot-9.scm:
 157: 4 [catch #t #<procedure e62fc0 at ice-9/eval.scm:416:20 ()> ...]
In unknown file:
   ?: 3 [private-key-from-file "/data/src/guile-ssh/tests/ecdsakey"]
In ice-9/boot-9.scm:
 102: 2 [#<procedure b72740 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
In ice-9/boot-9.scm:
 157: 15 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 14 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 13 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 12 [eval # #]
In ice-9/boot-9.scm:
2401: 11 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 10 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 9 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 8 [#<procedure ad7030 ()>]
In unknown file:
   ?: 7 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 432: 6 [eval # #]
 411: 5 [eval # #]
In ice-9/boot-9.scm:
 157: 4 [catch #t #<procedure cf97e0 at ice-9/eval.scm:416:20 ()> ...]
In unknown file:
   ?: 3 [public-key-from-file "/data/src/guile-ssh/tests/ecdsakey.pub"]
In ice-9/boot-9.scm:
 102: 2 [#<procedure b72a80 at ice-9/boot-9.scm:97:6 (thrown-k . args)> guile-ssh-error ...]
In ice-9/eval.scm:
 387: 1 [eval # #]
In unknown file:
   ?: 0 [make-stack #t]
Backtrace:
In ice-9/boot-9.scm:
 157: 10 [catch #t #<catch-closure a07100> ...]
In unknown file:
   ?: 9 [apply-smob/1 #<catch-closure a07100>]
In ice-9/boot-9.scm:
  63: 8 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 7 [eval # #]
In ice-9/boot-9.scm:
2401: 6 [save-module-excursion #<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
4052: 5 [#<procedure ac7880 at ice-9/boot-9.scm:4045:3 ()>]
1724: 4 [%start-stack load-stack #<procedure a82520 at ice-9/boot-9.scm:4041:10 ()>]
1729: 3 [#<procedure ad7030 ()>]
In unknown file:
   ?: 2 [primitive-load "/data/src/libguile-ssh/tests/./key.scm"]
In ice-9/eval.scm:
 453: 1 [eval # ()]
In unknown file:
   ?: 0 [private-key-from-file "/data/src/guile-ssh/tests/ecdsakey"]

ERROR: In procedure private-key-from-file:
ERROR: Throw to key `guile-ssh-error' with args `("private-key-from-file" "Unable to import a key from the file" "/data/src/guile-ssh/tests/ecdsakey" #f)'.
%%%% Starting test key  (Writing full log to "key.log")
FAIL private-key-from-file
FAIL public-key-from-file


       reply	other threads:[~2014-09-08  8:13 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <878um4tpo1.fsf@elephant.savannah>
2014-09-08  8:12 ` Ludovic Courtès [this message]
2014-09-14 13:16   ` [ANN] Guile-SSH 0.7.0 released Artyom Poptsov
2014-09-21 16:57     ` Ludovic Courtès
2014-09-30  7:32       ` Artyom Poptsov
2014-09-30 11:28         ` Ludovic Courtès
2014-10-03 18:10           ` Artyom Poptsov
2014-10-12 17:59           ` Artyom Poptsov
2014-10-12 22:57             ` Ludovic Courtès
2014-10-12 23:38               ` Artyom Poptsov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=878ulujzt3.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=guix-devel@gnu.org \
    --cc=poptsov.artyom@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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).