view tests/test-hup @ 2384:068b32d06873

Automatically add the path of hg to %PATH% using add_path
author Marco Barisione <marco@barisione.org>
date Mon, 22 May 2006 14:12:41 +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