view tests/test-hup @ 2245:d2118a0926bd

Added -A as an alias for --after to hg remove, like for other commands.
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 10 May 2006 19:23:19 +0200
parents f16435b45780
children 9419855309cd
line wrap: on
line source

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