Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mercurial-devel
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mercurial
mercurial-devel
Commits
74f54b7775f2
Commit
74f54b7775f2
authored
14 years ago
by
Thomas Arendsen Hein
Browse files
Options
Downloads
Plain Diff
merge with stable
parents
cc39d07d2212
581066a319e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mercurial/verify.py
+1
-1
1 addition, 1 deletion
mercurial/verify.py
tests/revlog-formatv0.py
+60
-0
60 additions, 0 deletions
tests/revlog-formatv0.py
tests/test-verify.t
+14
-0
14 additions, 0 deletions
tests/test-verify.t
with
75 additions
and
1 deletion
mercurial/verify.py
+
1
−
1
View file @
74f54b77
...
...
@@ -199,7 +199,7 @@
for
f
,
f2
,
size
in
repo
.
store
.
datafiles
():
if
not
f
:
err
(
None
,
_
(
"
cannot decode filename
'
%s
'"
)
%
f2
)
elif
size
>
0
:
elif
size
>
0
or
not
revlogv1
:
storefiles
.
add
(
f
)
files
=
sorted
(
set
(
filenodes
)
|
set
(
filelinkrevs
))
...
...
This diff is collapsed.
Click to expand it.
tests/revlog-formatv0.py
0 → 100755
+
60
−
0
View file @
74f54b77
#!/usr/bin/env python
# Copyright 2010 Intevation GmbH
# Author(s):
# Thomas Arendsen Hein <thomas@intevation.de>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""
Create a Mercurial repository in revlog format 0
changeset: 0:a1ef0b125355
tag: tip
user: user
date: Thu Jan 01 00:00:00 1970 +0000
files: empty
description:
empty file
"""
import
os
,
sys
files
=
[
(
'
formatv0/.hg/00changelog.i
'
,
'
000000000000004400000000000000000000000000000000000000
'
'
000000000000000000000000000000000000000000000000000000
'
'
0000a1ef0b125355d27765928be600cfe85784284ab3
'
),
(
'
formatv0/.hg/00changelog.d
'
,
'
756163613935613961356635353036303562366138343738336237
'
'
61623536363738616436356635380a757365720a3020300a656d70
'
'
74790a0a656d7074792066696c65
'
),
(
'
formatv0/.hg/00manifest.i
'
,
'
000000000000003000000000000000000000000000000000000000
'
'
000000000000000000000000000000000000000000000000000000
'
'
0000aca95a9a5f550605b6a84783b7ab56678ad65f58
'
),
(
'
formatv0/.hg/00manifest.d
'
,
'
75656d707479006238306465356431333837353835343163356630
'
'
35323635616431343461623966613836643164620a
'
),
(
'
formatv0/.hg/data/empty.i
'
,
'
000000000000000000000000000000000000000000000000000000
'
'
000000000000000000000000000000000000000000000000000000
'
'
0000b80de5d138758541c5f05265ad144ab9fa86d1db
'
),
(
'
formatv0/.hg/data/empty.d
'
,
''
),
]
def
makedirs
(
name
):
"""
recursive directory creation
"""
parent
=
os
.
path
.
dirname
(
name
)
if
parent
:
makedirs
(
parent
)
os
.
mkdir
(
name
)
makedirs
(
os
.
path
.
join
(
*
'
formatv0/.hg/data
'
.
split
(
'
/
'
)))
for
name
,
data
in
files
:
f
=
open
(
name
,
'
wb
'
)
f
.
write
(
data
.
decode
(
'
hex
'
))
f
.
close
()
sys
.
exit
(
0
)
This diff is collapsed.
Click to expand it.
tests/test-verify.t
+
14
−
0
View file @
74f54b77
...
...
@@ -84,4 +84,18 @@
1
integrity
errors
encountered
!
(
first
damaged
changeset
appears
to
be
0
)
$
cd
..
test
revlog
format
0
$
"
$TESTDIR
/revlog-formatv0.py
"
$
cd
formatv0
$
hg
verify
repository
uses
revlog
format
0
checking
changesets
checking
manifests
crosschecking
files
in
changesets
and
manifests
checking
files
1
files
,
1
changesets
,
1
total
revisions
$
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment