File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed
web-server-test/tests/web-server Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 121121 (lambda (port stop)
122122 (define hc (http-conn-open "127.0.0.1 " #:port port))
123123 (define-values (status _headers in)
124- (http-conn-sendrecv! hc "/ " ))
124+ ;; On versions prior to [1], net/http-client writes to
125+ ;; standard error when reading from the connection's input
126+ ;; port goes wrong. This makes raco test fail in --drdr mode,
127+ ;; so redirect that output to /dev/null.
128+ ;;
129+ ;; [1]: https://github.com/racket/racket/pull/5296
130+ (parameterize ([current-error-port (open-output-nowhere)])
131+ (http-conn-sendrecv! hc "/ " )))
125132 (check-equal? status #"HTTP/1.1 200 OK " )
126133 (define data-promise
127134 (delay/thread
128- (port->bytes in)))
135+ (with-handlers ([(lambda (e)
136+ (and (exn:fail? e)
137+ (regexp-match? #rx"input port is closed " (exn-message e))))
138+ (lambda (_ )
139+ #"" )])
140+ (port->bytes in))))
129141 (semaphore-wait started?-sema)
130142 (define stop-thds
131143 (for/list ([_ (in-range 2 )])
134146 (lambda ()
135147 (for-each thread-wait stop-thds))
136148 0 1 2 )
137- (check-equal?
149+ (check-match
138150 (force data-promise)
139- #" start\n " )))))))
151+ ( or #"" #" start\n ") )))))))
140152
141153(module+ test
142154 (require rackunit/text-ui)
You can’t perform that action at this time.
0 commit comments