##// END OF EJS Templates
issue1577: fix broken test by assuming less about CVS output....
issue1577: fix broken test by assuming less about CVS output. Specifically, output of "cvs ci" varies unpredictably across CVS versions, so any test that includes the output of "cvs ci" is doomed to fail some of the time. This fixes that by discarding the output of "cvs ci".

File last commit:

r6350:6aa4a3fa default
r8081:6c3b8132 default
Show More
test-merge5
25 lines | 510 B | text/plain | TextLexer
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 #!/bin/sh
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415
mkdir t
cd t
hg init
echo This is file a1 > a
echo This is file b1 > b
hg add a b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "commit #0" -d "1000000 0"
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 echo This is file b22 > b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m"comment #1" -d "1000000 0"
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 hg update 0
rm b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -A -m"comment #2" -d "1000000 0"
Matt Mackall
update: no -C needed to switch branches without outstanding changes
r6350 mv a c
Thomas Arendsen Hein
Don't require the "yes" command for test-merge5.
r1963 # in theory, we shouldn't need the "-y" below, but it prevents
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 # this test from hanging when "hg update" erroneously prompts the
# user for "keep or delete"
Matt Mackall
update: no -C needed to switch branches without outstanding changes
r6350 echo % should abort
hg update -y 1
mv c a
echo % should succeed
Thomas Arendsen Hein
Don't require the "yes" command for test-merge5.
r1963 hg update -y 1
mpm@selenic.com
[PATCH] Don't prompt user for keep-vs-delete when the merge is about to be aborted...
r415 exit 0