tests/test-hup
author Shun-ichi GOTO <shunichi.goto@gmail.com>
Wed, 09 Jan 2008 21:30:35 +0900
changeset 5843 83c354c4d529
parent 3918 a413f5c29c46
child 7080 a6477aa893b8
permissions -rwxr-xr-x
Add endswithsep() and use it instead of using os.sep and os.altsep directly. This change is intended to allow hooking endswithsep() by win32mbcs extension for MBCS support.

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