tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 30 Mar 2006 18:43:46 +0200
changeset 2023 3bdd3bf17cfa
parent 814 0902ffece4b4
child 2088 f16435b45780
permissions -rwxr-xr-x
Use [ x = y ] instead of [ x == y ] in shell scripts.

#!/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