##// END OF EJS Templates
Workaround to work with less sophisticated sed versions....
Workaround to work with less sophisticated sed versions. For example NetBSD sed doesn't know about '\|'.

File last commit:

r2088:f16435b4 default
r2528:049f930f default
Show More
test-hup
16 lines | 146 B | text/plain | TextLexer
Matt Mackall
Update tests
r642 #!/bin/sh
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
Thomas Arendsen Hein
Exit test-hup only after the background process has died....
r2088 wait
Matt Mackall
Update tests
r642 ls .hg