##// END OF EJS Templates
Add a features list to branches.cache to detect caches of old hg versions....
Add a features list to branches.cache to detect caches of old hg versions. The leading space in the written file makes sure that the feature list never can match an existing version, even if the first feature can be read as hex. Additionally old hg versions display the id with --debug, too.

File last commit:

r3988:9dcf9d45 default
r4168:bbfe5a3f default
Show More
test-incoming-outgoing
48 lines | 1.0 KiB | text/plain | TextLexer
/ tests / test-incoming-outgoing
Benoit Boissinot
add tests for incoming and outgoing
r2260 #!/bin/sh
mkdir test
cd test
hg init
for i in 0 1 2 3 4 5 6 7 8; do
echo $i >> foo
hg commit -A -m $i -d "1000000 0"
done
hg verify
hg serve -p 20059 -d --pid-file=hg.pid
Vadim Gelfer
tests: add timeouts, make run-tests.py clean up dead daemon processes...
r2571 cat hg.pid >> $DAEMON_PIDS
Benoit Boissinot
add tests for incoming and outgoing
r2260 cd ..
hg init new
# http incoming
http_proxy= hg -R new incoming http://localhost:20059/
Benoit Boissinot
add -r/--rev arguments to incoming and outgoing
r2521 http_proxy= hg -R new incoming -r 4 http://localhost:20059/
Benoit Boissinot
add tests for incoming and outgoing
r2260 # local incoming
hg -R new incoming test
Benoit Boissinot
add -r/--rev arguments to incoming and outgoing
r2521 hg -R new incoming -r 4 test
Benoit Boissinot
add tests for incoming and outgoing
r2260
# test with --bundle
http_proxy= hg -R new incoming --bundle test.hg http://localhost:20059/
hg -R new incoming --bundle test2.hg test
# test the resulting bundles
hg init temp
hg init temp2
hg -R temp unbundle test.hg
hg -R temp2 unbundle test2.hg
hg -R temp tip
hg -R temp2 tip
Thomas Arendsen Hein
Don't use -f for rm in tests where not needed. Drop /bin/ from /bin/rm.
r3988 rm -r temp temp2 new
Benoit Boissinot
add tests for incoming and outgoing
r2260
# test outgoing
hg clone test test-dev
cd test-dev
for i in 9 10 11 12 13; do
echo $i >> foo
hg commit -A -m $i -d "1000000 0"
done
hg verify
cd ..
hg -R test-dev outgoing test
http_proxy= hg -R test-dev outgoing http://localhost:20059/
Benoit Boissinot
add -r/--rev arguments to incoming and outgoing
r2521 http_proxy= hg -R test-dev outgoing -r 11 http://localhost:20059/