view tests/test-hup @ 2429:6a8f7c3f7333

dirstate: fix call to os.lstat when st is None
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Tue, 13 Jun 2006 14:56:01 -0700
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