tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 15 Aug 2005 08:08:11 +0100
changeset 911 d46af8e6b858
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Fix .hgignore parsing if last line has no EOL, ignore trailing white space. (and don't use tabs in python code)

#!/bin/sh

hg init
mkfifo p

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