##// END OF EJS Templates
addremove: comparing two empty files caused ZeroDivisionError...
addremove: comparing two empty files caused ZeroDivisionError (found by Giorgos Keramidas)

File last commit:

r4472:736e4929 default
r4472:736e4929 default
Show More
test-addremove-similar
43 lines | 686 B | text/plain | TextLexer
/ tests / test-addremove-similar
#!/bin/sh
hg init rep; cd rep
touch empty-file
python -c 'for x in range(10000): print x' > large-file
hg addremove
hg commit -m A
rm large-file empty-file
python -c 'for x in range(10,10000): print x' > another-file
hg addremove -s50
hg commit -m B
echo % comparing two empty files caused ZeroDivisionError in the past
hg update -C 0
rm empty-file
touch another-empty-file
hg addremove -s50
cd ..
hg init rep2; cd rep2
python -c 'for x in range(10000): print x' > large-file
python -c 'for x in range(50): print x' > tiny-file
hg addremove
hg commit -m A
python -c 'for x in range(70): print x' > small-file
rm tiny-file
rm large-file
hg addremove -s50
hg commit -m B