tests/test-hup
author Marco Barisione <marco@barisione.org>
Mon, 22 May 2006 16:47:40 +0200
changeset 2385 5d895018ef42
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
The line used to ignore the setup file for win32 is a regexp but it was after a "syntax: glob"

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
wait
ls .hg