##// END OF EJS Templates
test-config-case: print only the Section we're interested in....
test-config-case: print only the Section we're interested in. This allows us to add additional settings to the global hgrc file created by run-tests.py without breaking this test.

File last commit:

r3918:a413f5c2 default
r4528:85a69f4d default
Show More
test-hup
13 lines | 159 B | text/plain | TextLexer
#!/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/*