view tests/test-hup @ 5839:59fba5caa94b

Don't use the -i option with sed This patch fixes test-keyword on platforms without GNU sed (like OpenBSD).
author Will Maier <willmaier@ml1.net>
date Wed, 09 Jan 2008 10:00:18 -0600
parents a413f5c29c46
children a6477aa893b8
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 3
kill -HUP $P
wait
echo .hg/* .hg/store/*