##// 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:

r4387:93a4e72b default
r8081:6c3b8132 default
Show More
test-conflict
15 lines | 244 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
merge3: fix argument order...
r346
hg init
echo "nothing" > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m ancestor -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 echo "something" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch1 -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 hg co 0
echo "something else" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch2 -d "1000000 0"
Vadim Gelfer
deprecate 'update -m'. use 'merge' instead.
r2283 hg merge 1
mpm@selenic.com
merge3: fix argument order...
r346 hg id
Alexis S. L. Carvalho
run-tests.py: pass -L/--label to simplemerge...
r4387 cat a
mpm@selenic.com
merge3: fix argument order...
r346 hg status