tests/test-hup
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 01 Dec 2008 12:11:28 +0100
changeset 7448 7900d240c3d8
parent 7080 a6477aa893b8
permissions -rwxr-xr-x
Fix non-empty $CDPATH causing failed tests. If CDPATH contains '.', every cd command prints the target path, which causes additional output in tests and makes them fail.

#!/bin/sh

"$TESTDIR/hghave" fifo || exit 80

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/*