##// END OF EJS Templates
tests: unify test-revlog-packentry
Pradeepkumar Gayam -
r11919:67fb33eb default
parent child Browse files
Show More
@@ -1,14 +1,21 b''
1 #!/bin/sh
1 $ hg init repo
2 $ cd repo
2 3
3 hg init repo
4 cd repo
4 $ touch foo
5 $ hg ci -Am 'add foo'
6 adding foo
7
8 $ hg up -C null
9 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
5 10
6 touch foo
7 hg ci -Am 'add foo'
11 this should be stored as a delta against rev 0
8 12
9 hg up -C null
10 # this should be stored as a delta against rev 0
11 echo foo bar baz > foo
12 hg ci -Am 'add foo again'
13 $ echo foo bar baz > foo
14 $ hg ci -Am 'add foo again'
15 adding foo
16 created new head
13 17
14 hg debugindex .hg/store/data/foo.i
18 $ hg debugindex .hg/store/data/foo.i
19 rev offset length base linkrev nodeid p1 p2
20 0 0 0 0 0 b80de5d13875 000000000000 000000000000
21 1 0 24 0 1 0376abec49b8 000000000000 000000000000
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now