##// END OF EJS Templates
util: make new timedcmstats class Python 3 compatible
util: make new timedcmstats class Python 3 compatible

File last commit:

r37301:d4e62df1 default
r38848:9d49bb11 default
Show More
test-revlog-packentry.t
23 lines | 501 B | text/troff | Tads3Lexer
/ tests / test-revlog-packentry.t
Pradeepkumar Gayam
tests: unify test-revlog-packentry
r11919 $ hg init repo
$ cd repo
$ touch foo
$ hg ci -Am 'add foo'
adding foo
$ hg up -C null
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
this should be stored as a delta against rev 0
$ echo foo bar baz > foo
$ hg ci -Am 'add foo again'
adding foo
created new head
Sune Foldager
tests: fix deprecated use of hg debugdata/debugindex...
r14182 $ hg debugindex foo
Gregory Szorc
debugcommands: drop offset and length from debugindex by default...
r37301 rev linkrev nodeid p1 p2
0 0 b80de5d13875 000000000000 000000000000
1 1 0376abec49b8 000000000000 000000000000
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..