On Sat, Apr 14, 2012 at 10:44:30AM +0200, Zbigniew Jędrzejewski-Szmek wrote: > git-daemon is not launched properly in t5570: > > $ GIT_TEST_GIT_DAEMON=t ./t5570-git-daemon.sh > ok 1 - setup repository > ok 2 - create git-accessible bare repository > not ok - 3 clone git repository > not ok - 4 fetch changes via git protocol > ... > > Current setup code to spawn git daemon (start_git_daemon() in > lib-git-daemon.sh) redirects daemon output to a pipe, and then > redirects input from this pipe to a different fd, which is in turn > connected to a terminal: > mkfifo git_daemon_output > git daemon ... >&3 2>git_daemon_output > { > ... > cat >&4 > } <git_daemon_output > > Unfortunately, it seems that the shell (at least bash 4.1-3 from > debian) closes the pipe and cat doesn't really copy any messages. This > causes git-daemon to die. And as a consequence, t5570 tests fail for you? I cannot reproduce with bash 4.2.24(2). Which git version are you seeing this with? > Running 'strace -o log cat' instead of just 'cat' shows that no input > is read: > execve("/bin/cat", ...) = 0 > ... > read(0, "", 8192) = 0 > close(0) = 0 > close(1) = 0 > close(2) = 0 > exit_group(0) = ? What do you expect it to read? If git-daemon exits without error, it does not output anything. > I guess that the shell closes the redirection when exiting the > {}-delimited part. I am not sure about that part myself, but it seems to work for me in all cases. > It seems easiest to move the cat invocation outside of the > {}-delimited part and provide a separate redirection which will not be > closed. With your patch, only the first line of output will be read from git-daemon, because the pipe is broken as soon as you close the fifo for the first time. You can check this by passing an invalid argument to git-daemon. Only the first line of the usage string will be printed. In order to better understand the problem on your side, can you execute this script and tell me what it does for you? #!/bin/sh mkfifo fd yes >fd & pid=$! { read line echo $line } <fd cat <fd & sleep 1 kill $pid wait $pid rm -f fd If we cannot find a reliable solution using shell script, we should probably write a test-git-daemon wrapper which implements the expected output checking part in C. Clemens -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html