##// END OF EJS Templates
convert/git: check status when reading the whole output
convert/git: check status when reading the whole output

File last commit:

r8990:62739933 default
r10986:610f0473 stable
Show More
test-addremove
27 lines | 375 B | text/plain | TextLexer
Thomas Arendsen Hein
Added test for the currently broken addremove with the expected output.
r1623 #!/bin/sh
hg init rep
cd rep
mkdir dir
touch foo dir/bar
hg -v addremove
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg -v commit -m "add 1" -d "1000000 0"
Thomas Arendsen Hein
Added test for the currently broken addremove with the expected output.
r1623 cd dir/
touch ../foo_2 bar_2
hg -v addremove
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg -v commit -m "add 2" -d "1000000 0"
Vadim Gelfer
addremove: add -s/--similarity option...
r2958
cd ..
hg init sim
cd sim
echo a > a
echo a >> a
echo a >> a
echo c > c
hg commit -Ama
mv a b
rm c
echo d > d
Matt Mackall
addremove: build lists of already added and removed files too (issue1696)
r8990 hg addremove -n -s 50 # issue 1696
Thomas Arendsen Hein
Corrected similarity parameter used in test-addremove...
r4473 hg addremove -s 50
Vadim Gelfer
addremove: add -s/--similarity option...
r2958 hg commit -mb