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
c3368278
Commit
c3368278
authored
16 years ago
by
Adrian Buehlmann
Browse files
Options
Downloads
Patches
Plain Diff
add test-verify
parent
dab95717
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/test-verify
+26
-0
26 additions, 0 deletions
tests/test-verify
tests/test-verify.out
+34
-0
34 additions, 0 deletions
tests/test-verify.out
with
60 additions
and
0 deletions
tests/test-verify
0 → 100755
+
26
−
0
View file @
c3368278
#!/bin/sh
echo
% prepare repo
hg init
echo
"some text"
>
FOO.txt
echo
"another text"
>
bar.txt
echo
"more text"
>
QUICK.txt
hg add
hg ci
-d
'0 0'
-mtest1
echo
echo
% verify
hg verify
echo
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
return
0
This diff is collapsed.
Click to expand it.
tests/test-verify.out
0 → 100644
+
34
−
0
View file @
c3368278
% prepare repo
adding FOO.txt
adding QUICK.txt
adding bar.txt
% verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
3 files, 1 changesets, 3 total revisions
% introduce some bugs in repo
% verify
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
?: cannot decode filename 'data/X_f_o_o.txt.i'
data/FOO.txt.i@0: missing revlog!
0: empty or missing FOO.txt
FOO.txt@0: f62022d3d590 in manifests not found
data/QUICK.txt.i@0: missing revlog!
0: empty or missing QUICK.txt
QUICK.txt@0: 88b857db8eba in manifests not found
data/bar.txt.i@0: missing revlog!
0: empty or missing bar.txt
bar.txt@0: 256559129457 in manifests not found
warning: orphan revlog 'data/xbar.txt.i'
3 files, 1 changesets, 0 total revisions
1 warnings encountered!
10 integrity errors encountered!
(first damaged changeset appears to be 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