From 2c7b48c2fbccc0b2fc09ae055ce5b32f3fe6b441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 2 Aug 2016 17:31:45 +0200 Subject: tests: Work around Guile bug with unbuffered custom binary input ports. Reported by Chris Marusich at * tests/publish.scm (http-get-port): Remove 'setvbuf' call for the response port. --- tests/publish.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/publish.scm') diff --git a/tests/publish.scm b/tests/publish.scm index 7499553aeb..99d341da46 100644 --- a/tests/publish.scm +++ b/tests/publish.scm @@ -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 + ;; (PORT might be a custom binary input port). port)))) (define (publish-uri route) -- cgit v1.2.3