##// 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:

r52163:ceeb8fa2 default
r52835:73a43fe3 default
Show More
test-censor2.t
25 lines | 690 B | text/troff | Tads3Lexer
Arseniy Alekseyev
censor: demonstrate a bug...
r50065 $ cat >> $HGRCPATH <<EOF
> [censor]
> policy=ignore
> EOF
$ mkdir r
$ cd r
$ hg init
$ echo secret > target
$ hg commit -Am "secret"
adding target
$ touch bystander
$ hg commit -Am "innocent"
adding bystander
$ echo erased-secret > target
$ hg commit -m "erased secret"
$ hg censor target --config extensions.censor= -r ".^^"
censor: inform the user that we are spending time checking heads...
r52160 checking for the censored content in 1 heads
censor: be more verbose about the other steps too...
r52162 checking for the censored content in the working directory
censor: accept multiple revision in a single call...
r52163 censoring 1 file revisions
Arseniy Alekseyev
censor: demonstrate a bug...
r50065 $ hg update ".^"
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ cat target
$ hg update tip
Arseniy Alekseyev
censor: fix [hg update] away from a revision with censored files...
r50066 1 files updated, 0 files merged, 0 files removed, 0 files unresolved