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

r6328:991f7518 default
r8081:6c3b8132 default
Show More
test-cat
18 lines | 251 B | text/plain | TextLexer
Benoit Boissinot
fix the cat command...
r1582 #!/bin/sh
#
mkdir t
cd t
hg init
echo 0 > a
echo 0 > b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg ci -A -m m -d "1000000 0"
Benoit Boissinot
fix the cat command...
r1582 hg rm a
hg cat a
Jesse Glick
Option --decode for hg cat to apply decode filters....
r6093 hg cat --decode a # more tests in test-encode
Benoit Boissinot
fix the cat command...
r1582 echo 1 > b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg ci -m m -d "1000000 0"
Benoit Boissinot
fix the cat command...
r1582 echo 2 > b
hg cat -r 0 a
hg cat -r 0 b
hg cat -r 1 a
hg cat -r 1 b