summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/publish.scm3
1 files changed, 2 insertions, 1 deletions
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 <http://bugs.gnu.org/19610>
+        ;; (PORT might be a custom binary input port).
         port))))
 
 (define (publish-uri route)