##// END OF EJS Templates
archive: set date to 1980 for very old zip files...
archive: set date to 1980 for very old zip files The zip file format stores the date using "MS-DOS format" which apparently means that they use 1980 as their epoch. Python's zipfile module emits deprecation warnings of this form /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: struct integer overflow masking is deprecated self.fp.write(zinfo.FileHeader()) /usr/lib/python2.6/zipfile.py:1108: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.fp.write(zinfo.FileHeader()) /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: struct integer overflow masking is deprecated self.z.close() /home/mg/src/mercurial-crew/mercurial/archival.py:169: DeprecationWarning: 'H' format requires 0 <= number <= 65535 self.z.close() when it is given such old timestamps. This fixes this by silently clamping the date to 1980.

File last commit:

r12170:581066a3 stable
r12319:381f1312 stable
Show More
test-verify
59 lines | 758 B | text/plain | TextLexer
Adrian Buehlmann
add test-verify
r6893 #!/bin/sh
echo % prepare repo
Benoit Boissinot
raise RevlogError when parser can't parse the revlog index...
r8016 hg init a
cd a
Adrian Buehlmann
add test-verify
r6893 echo "some text" > FOO.txt
echo "another text" > bar.txt
echo "more text" > QUICK.txt
hg add
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 hg ci -mtest1
Adrian Buehlmann
add test-verify
r6893
echo
echo % verify
hg verify
echo
Sune Foldager
verify: report existence of journal
r9690 echo % verify with journal
touch .hg/store/journal
hg verify
rm .hg/store/journal
echo
Adrian Buehlmann
add test-verify
r6893 echo % introduce some bugs in repo
cd .hg/store/data
mv _f_o_o.txt.i X_f_o_o.txt.i
mv bar.txt.i xbar.txt.i
rm _q_u_i_c_k.txt.i
echo
echo % verify
hg verify
Benoit Boissinot
raise RevlogError when parser can't parse the revlog index...
r8016 cd ..
echo % test revlog corruption
hg init b
cd b
touch a
hg add a
hg ci -m a
echo 'corrupted' > b
Will Maier
Make test-verify SUSv3 compatible....
r8720 dd if=.hg/store/data/a.i of=start bs=1 count=20 2>/dev/null
Benoit Boissinot
raise RevlogError when parser can't parse the revlog index...
r8016 cat start b > .hg/store/data/a.i
echo
echo % verify
hg verify
Thomas Arendsen Hein
verify: fix "missing revlog!" errors for revlog format v0 and add test...
r12170 cd ..
echo % test revlog format 0
"$TESTDIR/revlog-formatv0.py"
cd formatv0
hg verify
Matt Mackall
store: simplify class hierarchy
r6898 exit 0