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

r49326:b74ee41a stable
r52835:73a43fe3 default
Show More
test-sparse-with-safe-share.t
23 lines | 454 B | text/troff | Tads3Lexer
/ tests / test-sparse-with-safe-share.t
Arseniy Alekseyev
sparse: demonstrate a bug when used with safe-share...
r49325 Same with share-safe
$ echo "[format]" >> $HGRCPATH
$ echo "use-share-safe = True" >> $HGRCPATH
$ cd $TESTTMP
$ hg init myrepo
$ cd myrepo
$ cat > .hg/hgrc <<EOF
> [extensions]
> sparse=
> EOF
$ echo a > show
$ echo x > hide
$ hg ci -Aqm 'initial'
Arseniy Alekseyev
sparse: lock the store when updating requirements config...
r49326 Regression test: checks that this command correctly locks the store
before updating the store [requirements] config.
Arseniy Alekseyev
sparse: demonstrate a bug when used with safe-share...
r49325
$ hg up -q 0
$ hg debugsparse --include 'hide'