On 11/2/22 6:09 PM, Matthew John Cheetham via GitGitGadget wrote: > From: Matthew John Cheetham <mjcheetham@xxxxxxxxxxx> > > Introduce a mini HTTP server helper that in the future will be enhanced > to provide a frontend for the git-http-backend, with support for > arbitrary authentication schemes. > > Right now, test-http-server is a pared-down copy of the git-daemon that > always returns a 501 Not Implemented response to all callers. Thanks for splitting this out. I ran a diff between daemon.c and this version of t/helper/test-http-server.c. Most of the diff was functionality removed from daemon.c, and the small bits that were new to this file are either comments detailing how the helper works or custom bits related to the test environment (like the pid file). It was much easier to validate that these changes made sense. Looking good. Thanks, -Stolee