##// END OF EJS Templates
Document log date ranges and mention 'hg help dates' for all commands (issue998)
Document log date ranges and mention 'hg help dates' for all commands (issue998)

File last commit:

r4966:8d982aef default
r6163:1f733c2f default
Show More
test-addremove-similar
49 lines | 774 B | text/plain | TextLexer
/ tests / test-addremove-similar
Erling Ellingsen
Avoid some false positives for addremove -s...
r4135 #!/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
Thomas Arendsen Hein
addremove: comparing two empty files caused ZeroDivisionError...
r4472 echo % comparing two empty files caused ZeroDivisionError in the past
hg update -C 0
rm empty-file
touch another-empty-file
hg addremove -s50
Erling Ellingsen
Avoid some false positives for addremove -s...
r4135 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
Bryan O'Sullivan
addremove: print meaningful error message if --similar not numeric
r4966 echo % should all fail
hg addremove -s foo
hg addremove -s -1
hg addremove -s 1e6
true