~ruther/guix-local

2c7b48c2fbccc0b2fc09ae055ce5b32f3fe6b441 — Ludovic Courtès 9 years ago e2b12a5
tests: Work around Guile bug with unbuffered custom binary input ports.

Reported by Chris Marusich <cmmarusich@gmail.com>
at <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=24060#19>

* tests/publish.scm (http-get-port): Remove 'setvbuf' call for the
response port.
1 files changed, 2 insertions(+), 1 deletions(-)

M tests/publish.scm
M tests/publish.scm => tests/publish.scm +2 -1
@@ 66,7 66,8 @@
        (lambda ()
          (http-get uri #:port socket #:streaming? #t))
      (lambda (response port)
        (setvbuf port _IONBF)
        ;; Don't (setvbuf port _IONBF) because of <http://bugs.gnu.org/19610>
        ;; (PORT might be a custom binary input port).
        port))))

(define (publish-uri route)