##// END OF EJS Templates
tests: use pattern matching to mask `ECONNREFUSED` messages...
tests: use pattern matching to mask `ECONNREFUSED` messages The second and third one of these in `test-http-proxy.t` was failing on Windows. The others were found by grep and by failed tests when output was matched and an attempt was made to emit the mask pattern. The first clonebundles failure on Windows emitted: error fetching bundle: [WinError 10061] $ECONNREFUSED$ We should probably stringify that better to get rid of the "[WinError 10061]" part.

File last commit:

r50147:4141951d default
r52835:73a43fe3 default
Show More
test-revlog-packentry.t
23 lines | 511 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
debugindex: rename the parent column to mention nodeid...
r50147 rev linkrev nodeid p1-nodeid p2-nodeid
Gregory Szorc
debugcommands: drop offset and length from debugindex by default...
r37301 0 0 b80de5d13875 000000000000 000000000000
1 1 0376abec49b8 000000000000 000000000000
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..