tests/test-hup
author Matt Mackall <mpm@selenic.com>
Tue, 10 Oct 2006 01:16:06 -0500
changeset 3317 966632304dde
parent 2529 9419855309cd
child 3853 c0b449154a90
permissions -rwxr-xr-x
merge: shortcircuit filemerge for identical files - use filectx.cmp to compare files - move merge messages into filemerge - kill the redundant resolving message - update tests

#!/bin/sh

hg init
mkfifo p

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