tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Tue, 09 May 2006 17:21:53 +0200
changeset 2234 9ea93ff67a73
parent 2088 f16435b45780
child 2529 9419855309cd
permissions -rwxr-xr-x
New make target "dist-notests" to create tarballs without running tests first.

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