D5270: tests: sniff for libfuzzer actually being available in test-fuzz-targets.t

2018-11-28 Thread yuja (Yuya Nishihara)
yuja added a comment. > + $ havefuzz() { > + > cat > $TESTTMP/dummy.cc < + > #include > + > int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; } Still stdint.h is missing. REPOSITORY rHG Mercurial REVISION DETAIL

Re: [PATCH 1 of 6 V3] perf: add a perfignore command

2018-11-28 Thread Yuya Nishihara
On Fri, 23 Nov 2018 15:12:44 +0100, Boris Feld wrote: > # HG changeset patch > # User Boris Feld > # Date 1542916813 -3600 > # Thu Nov 22 21:00:13 2018 +0100 > # Node ID 917fa088dd67d1f56c751de59acc91abc799d83a > # Parent efd0f79246e3e6633dfd06226464a48584f69b19 > # EXP-Topic perf-ignore >

Re: D5269: tests: sniff for /usr/local/bin/gmake and use it in test-fuzz-targets.t

2018-11-28 Thread Yuya Nishihara
> + $ GMAKE=`which gmake` > + $ if [ -x $GMAKE ] ; then Need to check whether `"$GMAKE"` is empty or not. And `which gmake` may fail with 1. ___ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org

Re: D5270: tests: sniff for libfuzzer actually being available in test-fuzz-targets.t

2018-11-28 Thread Yuya Nishihara
> + $ havefuzz() { > + > cat > $TESTTMP/dummy.cc < + > #include > + > int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; > } Still stdint.h is missing. ___ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org

D5269: tests: sniff for /usr/local/bin/gmake and use it in test-fuzz-targets.t

2018-11-28 Thread yuja (Yuya Nishihara)
yuja added a comment. > + $ GMAKE=`which gmake` > + $ if [ -x $GMAKE ] ; then Need to check whether `"$GMAKE"` is empty or not. And `which gmake` may fail with 1. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D5269 To: durin42, #hg-reviewers Cc:

Re: [PATCH 1 of 2] tests: also skip remotefilelog *.py tests on Windows

2018-11-28 Thread Yuya Nishihara
On Tue, 27 Nov 2018 22:46:39 -0500, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison > # Date 1543375392 18000 > # Tue Nov 27 22:23:12 2018 -0500 > # Node ID c743bb1c19513a61925ce4663d33323aea7016cc > # Parent df8ed31a8ad8ae116e31550d9128055ece22e258 > tests: also skip

[Bug 6027] New: Links traversal check outside repo

2018-11-28 Thread mercurial-bugs
https://bz.mercurial-scm.org/show_bug.cgi?id=6027 Bug ID: 6027 Summary: Links traversal check outside repo Product: Mercurial Version: 4.8 Hardware: PC OS: Linux Status: UNCONFIRMED Severity: bug

Re: [PATCH 4 of 6 V2] match: extract function that group regexps

2018-11-28 Thread Boris FELD
On 23/11/2018 08:26, Martin von Zweigbergk via Mercurial-devel wrote: > > > On Thu, Nov 22, 2018 at 2:23 PM Boris Feld > wrote: > > # HG changeset patch > # User Boris Feld > > # Date 1542903949 -3600 > #      Thu

Re: [PATCH 5 of 6 V2] match: avoid translating glob to matcher multiple times for large sets

2018-11-28 Thread Boris FELD
On 24/11/2018 00:51, Martin von Zweigbergk via Mercurial-devel wrote: > > > On Fri, Nov 23, 2018 at 9:20 AM Boris FELD > wrote: > > > On 23/11/2018 10:24, Yuya Nishihara wrote: > > On Fri, 23 Nov 2018 18:00:36 +0900, Yuya Nishihara wrote: > >> On Fri,

Re: Using internal phase for history rewriting

2018-11-28 Thread Boris FELD
We landed the necessary "requirements" in 4.8 and we are planning to land the remaining code in the first half of 4.9. On 13/11/2018 18:13, Gregory Szorc wrote: > At the 4.8 sprint, we decided that we wanted to use "internal" phases > for hiding rewritten changesets. From the notes: > > * We will

Re: [PATCH evolve-ext] evolve: fix a documentation typo

2018-11-28 Thread Boris FELD
This got pushed a couple of days back and is part of the 8.3.2 we released today. Thanks On 20/11/2018 18:27, Eric Spishak-Thomas via Mercurial-devel wrote: > # HG changeset patch > # User Eric Spishak-Thomas > # Date 1542731618 18000 > # Tue Nov 20 11:33:38 2018 -0500 > # Branch stable >

Re: [PATCH evolve-ext] exthelper: drop Mercurial 4.3 support

2018-11-28 Thread Boris FELD
This got pushed in a while back. Thanks a lot. We are quite excited to see someone up-streaming of this. What's your overall plan? Feel encouraged to send further preparatory patches evolve side if necessary. On 11/11/2018 05:57, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison

Re: Auto-formatting code with black - object now if you have a strong opinion

2018-11-28 Thread Yuya Nishihara
On Tue, 27 Nov 2018 15:42:21 -0800, Gregory Szorc wrote: > I also have some issues with black's formatting. I dislike black's use of > double quotes for strings (maybe a holdover from my knowledge of shell, > Perl, and PHP, where different quotes matter). And I wish it didn't collect > imports on

Re: [PATCH 6 of 6] vfs: also audit rename

2018-11-28 Thread Yuya Nishihara
On Mon, 26 Nov 2018 19:22:48 +0100, Boris Feld wrote: > # HG changeset patch > # User Boris Feld > # Date 1498961267 -7200 > # Sun Jul 02 04:07:47 2017 +0200 > # Node ID afdc73b20bd1faeec1b278ef0a2ab8d1dda71eb8 > # Parent cc7d970d99eb242dbe2d8e792a9212aabd06911f > # EXP-Topic

D5302: py3: use pycompat.xrange instead of xrange

2018-11-28 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes. Closed by commit rHGba706e3082bd: py3: use pycompat.xrange instead of xrange (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D5302?vs=12606=12614

D5308: store: don't pass 'atomictemp=True' while appending to fncache

2018-11-28 Thread pulkit (Pulkit Goyal)
pulkit added a comment. Pasting Yuja's reply to that from mailing list: > In https://phab.mercurial-scm.org/D5308#78989, @pulkit wrote: > > > In https://phab.mercurial-scm.org/D5308#78985, @yuja wrote: > > > > > > - a/mercurial/store.py +++ b/mercurial/store.py @@ -486,7 +486,7

Re: [PATCH evolve-ext] exthelper: drop Mercurial 4.3 support

2018-11-28 Thread Matt Harbison
> On Nov 28, 2018, at 10:28 AM, Boris FELD wrote: > > This got pushed in a while back. Thanks a lot. > > We are quite excited to see someone up-streaming of this. > What's your overall plan? Feel encouraged to send further preparatory > patches evolve side if necessary. I noticed over the

D5270: tests: sniff for libfuzzer actually being available in test-fuzz-targets.t

2018-11-28 Thread durin42 (Augie Fackler)
durin42 updated this revision to Diff 12616. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D5270?vs=12613=12616 REVISION DETAIL https://phab.mercurial-scm.org/D5270 AFFECTED FILES tests/test-fuzz-targets.t CHANGE DETAILS diff --git

D5309: match: remove obsolete catching of OverflowError

2018-11-28 Thread martinvonz (Martin von Zweigbergk)
martinvonz created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY Since https://phab.mercurial-scm.org/rHG0f6a1bdf89fb9b8e6c260a56a96063df3d57a636 (match: handle large regexes, 2007-08-19), we catch an OverflowError from

Re: [PATCH 2 of 2] remotefilelog: prevent this extension from loading on Windows

2018-11-28 Thread Augie Fackler
> On Nov 27, 2018, at 22:46, Matt Harbison wrote: > > # HG changeset patch > # User Matt Harbison > # Date 1543376352 18000 > # Tue Nov 27 22:39:12 2018 -0500 > # Node ID aac9ae9f512f53a907dc799d2d6050931001e6e1 > # Parent c743bb1c19513a61925ce4663d33323aea7016cc > remotefilelog:

D4892: narrow: drop the bundle2 capability since we have server capabilities (BC)

2018-11-28 Thread pulkit (Pulkit Goyal)
This revision was automatically updated to reflect the committed changes. Closed by commit rHG381d3121e97a: narrow: drop the bundle2 capability since we have server capabilities (BC) (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE

[PATCH] sparse: raise a move verbose index error from the C code

2018-11-28 Thread Boris Feld
# HG changeset patch # User Boris Feld # Date 1543281014 -3600 # Tue Nov 27 02:10:14 2018 +0100 # Node ID 237d0b9e6b04740845930e1322bde978bab7da92 # Parent 0800d9e6e216b2ca59f05788b288685b8d7b2d93 # EXP-Topic sparse-cext # Available At https://bitbucket.org/octobus/mercurial-devel/ #

mercurial@40722: 32 new changesets

2018-11-28 Thread Mercurial Commits
32 new changesets in mercurial: https://www.mercurial-scm.org/repo/hg/rev/a65fe13de84f changeset: 40691:a65fe13de84f user:Boris Feld date:Mon Nov 19 14:14:56 2018 + summary: perf: add a new `perfhelper-tracecopies` command

D5334: test: enable sparse-revlog for test-sparse-requirement.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5340: test: enable sparse-revlog for test-treemanifest.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5341: test: enable sparse-revlog for test-wireproto-caching.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5344: test: preemptively disable sparse-revlog for some of test-upgrade-repo

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY Some part of this test assumes sparse-revlog is off. We enforce it explicitly. REPOSITORY rHG Mercurial REVISION DETAIL

D5346: tests: remove all transitional configuration

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a reviewer: durin42. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY Now that sparse-revlog is enabled by default, we no longer needs it. REPOSITORY rHG Mercurial REVISION DETAIL

[PATCH 2 of 2 STABLE] wireprotov2peer: wait for initial object before resolving future

2018-11-28 Thread Gregory Szorc
# HG changeset patch # User Gregory Szorc # Date 1543438343 28800 # Wed Nov 28 12:52:23 2018 -0800 # Branch stable # Node ID 46a9258df76be8dee4cd2ccd67db7d1da4677eaa # Parent 94b0d0f996e11aece0d601201f074c5a9eb0e741 wireprotov2peer: wait for initial object before resolving future As part

D5332: test: enable sparse-revlog for test-repo-compengines.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5331: test: enable sparse-revlog for test-remotefilelog-log.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5333: test: enable sparse-revlog for test-revlog-v2.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5335: test: enable sparse-revlog for test-ssh-bundle1.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5336: test: enable sparse-revlog for test-ssh-proto.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5337: test: enable sparse-revlog for test-ssh-proto-unbundle.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5338: test: enable sparse-revlog for test-ssh.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5339: test: enable sparse-revlog for test-stream-bundle-v2.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added subscribers: mercurial-devel, mjpieters. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG

D5342: test: enable sparse-revlog for test-wireproto-command-capabilities.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5343: test: enable sparse-revlog for test-wireproto-content-redirects.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5345: sparse-revlog: enabled by default

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added subscribers: mercurial-devel, mjpieters. Herald added a reviewer: hg-reviewers. REVISION SUMMARY The feature provides large benefits. It now seems mature enough to be enabled by default. - It solves catastrophic issues regarding delta

[PATCH 1 of 2 STABLE] wireprotov2peer: always return a bool from _processredirect()

2018-11-28 Thread Gregory Szorc
# HG changeset patch # User Gregory Szorc # Date 1543430263 28800 # Wed Nov 28 10:37:43 2018 -0800 # Branch stable # Node ID 94b0d0f996e11aece0d601201f074c5a9eb0e741 # Parent 25b7c4cb5de1593e16bbd7a7dafbd28baa743995 wireprotov2peer: always return a bool from _processredirect() Without

D5269: tests: sniff for /usr/local/bin/gmake and use it in test-fuzz-targets.t

2018-11-28 Thread durin42 (Augie Fackler)
durin42 updated this revision to Diff 12615. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D5269?vs=12612=12615 REVISION DETAIL https://phab.mercurial-scm.org/D5269 AFFECTED FILES tests/test-fuzz-targets.t CHANGE DETAILS diff --git

Re: [PATCH 5 of 6 V2] match: avoid translating glob to matcher multiple times for large sets

2018-11-28 Thread Martin von Zweigbergk via Mercurial-devel
On Wed, Nov 28, 2018 at 7:41 AM Boris FELD wrote: > > On 24/11/2018 00:51, Martin von Zweigbergk via Mercurial-devel wrote: > > > > On Fri, Nov 23, 2018 at 9:20 AM Boris FELD wrote: > >> >> On 23/11/2018 10:24, Yuya Nishihara wrote: >> > On Fri, 23 Nov 2018 18:00:36 +0900, Yuya Nishihara wrote:

D5312: test: explicitly disable sparse-revlog in test-generaldelta.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY That test is about testing generaldelta without further improvement. We ensure it will stay that way even if sparse-revlog is turned on by default. The

D5311: sparse-revlog: disable sparse-revlog if config disable general-delta

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY Sparse-revlog requires general-delta in order to work. If general-delta is explicitly disabled through configuration, we should honor that and also disabled

D5317: test: enable sparse-revlog for test-clone-uncompressed.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5319: test: enable sparse-revlog for test-hgweb-commands.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5323: test: enable sparse-revlog for test-lfs-largefiles.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5326: test: enable sparse-revlog for test-narrow-clone-stream.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a reviewer: durin42. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual

D5325: test: enable sparse-revlog for test-narrow-clone-no-ellipsis.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a reviewer: durin42. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual

D5329: test: enable sparse-revlog for test-remotefilelog-clone.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5313: test: explicitly disable sparse-revlog in test-http-bad-server.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY The `test-http-bad-server.t` test is very fragile with hard-coded number all around. Adding any new capability have massive consequences on it that are long

D5315: test: enable sparse-revlog for test-bundle.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5314: test: make sure sparse-revlog does not interfer with test-parseindex.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY That test carefully craft revlog to reproduce issues. We do not want new revlog behavior to interfere with that. REPOSITORY rHG Mercurial REVISION DETAIL

D5320: test: enable sparse-revlog for test-http-protocol.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5322: test: enable sparse-revlog for test-lfconvert.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5330: test: enable sparse-revlog for test-remotefilelog-clone-tree.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5310: test: fix config typo in test-upgrade-repo.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added subscribers: mercurial-devel, mjpieters. Herald added a reviewer: hg-reviewers. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D5310 AFFECTED FILES tests/test-upgrade-repo.t CHANGE DETAILS diff --git

D5316: test: enable sparse-revlog for test-clonebundles.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5318: test: enable sparse-revlog for test-debugcommands.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5321: test: enable sparse-revlog for test-init.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5324: test: enable sparse-revlog for test-lfs-serve.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added subscribers: mercurial-devel, mjpieters. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG

D5328: test: enable sparse-revlog for test-phases.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual changesets. REPOSITORY rHG Mercurial

D5327: test: enable sparse-revlog for test-narrow-clone.t

2018-11-28 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a reviewer: durin42. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY We are about to enable sparse-revlog globally. To help with reviewing the tests change, we isolate them in individual

Re: [PATCH 2 of 2] remotefilelog: prevent this extension from loading on Windows

2018-11-28 Thread Matt Harbison
> On Nov 28, 2018, at 1:59 PM, Augie Fackler wrote: > >> On Nov 27, 2018, at 22:46, Matt Harbison wrote: >> >> # HG changeset patch >> # User Matt Harbison >> # Date 1543376352 18000 >> # Tue Nov 27 22:39:12 2018 -0500 >> # Node ID aac9ae9f512f53a907dc799d2d6050931001e6e1 >> # Parent