# HG changeset patch # User Yuya Nishihara # Date 2017-10-29 08:53:52 # Node ID bf2db35a6fe7a02b69eaa0e35708cf0044d73510 # Parent 3423f7e2d28765f74f7dd9dfb07aaa36d9c0d766 test-static-http: flush access log per request It appears that stderr is fully buffered on Windows. # no-check-commit because of log_message() function diff --git a/tests/dumbhttp.py b/tests/dumbhttp.py --- a/tests/dumbhttp.py +++ b/tests/dumbhttp.py @@ -26,12 +26,16 @@ if os.environ.get('HGIPV6', '0') == '1': else: simplehttpserver = httpserver.httpserver +class _httprequesthandler(httpserver.simplehttprequesthandler): + def log_message(self, format, *args): + httpserver.simplehttprequesthandler.log_message(self, format, *args) + sys.stderr.flush() + class simplehttpservice(object): def __init__(self, host, port): self.address = (host, port) def init(self): - self.httpd = simplehttpserver( - self.address, httpserver.simplehttprequesthandler) + self.httpd = simplehttpserver(self.address, _httprequesthandler) def run(self): self.httpd.serve_forever()