mirror of
https://github.com/facebook/sapling.git
synced 2025-01-06 04:43:19 +03:00
tests: unify test-basic
This commit is contained in:
parent
0e5ee51c54
commit
cfd4fc0439
@ -1,12 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
mkdir t
|
|
||||||
cd t
|
|
||||||
hg init
|
|
||||||
echo a > a
|
|
||||||
hg add a
|
|
||||||
hg commit -m test -d "1000000 0"
|
|
||||||
hg history
|
|
||||||
hg manifest --debug
|
|
||||||
hg cat a
|
|
||||||
hg verify
|
|
@ -1,13 +0,0 @@
|
|||||||
changeset: 0:0acdaf898367
|
|
||||||
tag: tip
|
|
||||||
user: test
|
|
||||||
date: Mon Jan 12 13:46:40 1970 +0000
|
|
||||||
summary: test
|
|
||||||
|
|
||||||
b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
|
|
||||||
a
|
|
||||||
checking changesets
|
|
||||||
checking manifests
|
|
||||||
crosschecking files in changesets and manifests
|
|
||||||
checking files
|
|
||||||
1 files, 1 changesets, 1 total revisions
|
|
40
tests/test-basic.t
Normal file
40
tests/test-basic.t
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
Create a repository:
|
||||||
|
|
||||||
|
$ mkdir t
|
||||||
|
$ cd t
|
||||||
|
$ hg init
|
||||||
|
|
||||||
|
Make a changeset:
|
||||||
|
|
||||||
|
$ echo a > a
|
||||||
|
$ hg add a
|
||||||
|
$ hg commit -m test -d "1000000 0"
|
||||||
|
|
||||||
|
This command is ancient:
|
||||||
|
|
||||||
|
$ hg history
|
||||||
|
changeset: 0:0acdaf898367
|
||||||
|
tag: tip
|
||||||
|
user: test
|
||||||
|
date: Mon Jan 12 13:46:40 1970 +0000
|
||||||
|
summary: test
|
||||||
|
|
||||||
|
|
||||||
|
Poke around at hashes:
|
||||||
|
|
||||||
|
$ hg manifest --debug
|
||||||
|
b789fdd96dc2f3bd229c1dd8eedf0fc60e2b68e3 644 a
|
||||||
|
|
||||||
|
$ hg cat a
|
||||||
|
a
|
||||||
|
|
||||||
|
Verify should succeed:
|
||||||
|
|
||||||
|
$ hg verify
|
||||||
|
checking changesets
|
||||||
|
checking manifests
|
||||||
|
crosschecking files in changesets and manifests
|
||||||
|
checking files
|
||||||
|
1 files, 1 changesets, 1 total revisions
|
||||||
|
|
||||||
|
At the end...
|
Loading…
Reference in New Issue
Block a user