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

2018-11-17 Thread yuja (Yuya Nishihara)
yuja added a comment. (resend) >> + $ if [ -x /usr/local/bin/gmake ] ; then > > + > MAKE=gmake > > Isn't this assuming that /usr/local/bin is in $PATH? IOW, shouldn't this > assignment be: > > MAKE=/usr/local/bin/gmake Perhaps, `type` or `which` can be used

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

2018-11-17 Thread Yuya Nishihara
(resend) > > + $ if [ -x /usr/local/bin/gmake ] ; then > > + > MAKE=gmake > > Isn't this assuming that /usr/local/bin is in $PATH? IOW, shouldn't this > assignment be: > > MAKE=/usr/local/bin/gmake Perhaps, `type` or `which` can be used instead. `gmake` should be in PATH if it's

Re: [PATCH] branch: allow changing branch of merge commits with --rev

2018-11-17 Thread Yuya Nishihara
On Sat, 17 Nov 2018 22:45:16 +0800, Anton Shestakov wrote: > # HG changeset patch > # User Anton Shestakov > # Date 1541743033 -28800 > # Fri Nov 09 13:57:13 2018 +0800 > # Node ID 353bb16507d9824888ba0abb4d35a4ed75189303 > # Parent b93157f69f46a1359726be32bde4afb1e5af4384 > # EXP-Topic

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

2018-11-17 Thread yuja (Yuya Nishihara)
yuja added a comment. > + $ havefuzz() { > + > cat > dummy.cc < + > int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; } > + > int main(int argc, char **argv) { > + > const char data[] = "asdf"; > + > return LLVMFuzzerTestOneInput((const

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

2018-11-17 Thread Yuya Nishihara
> + $ havefuzz() { > + > cat > dummy.cc < + > int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; > } > + > int main(int argc, char **argv) { > + > const char data[] = "asdf"; > + > return LLVMFuzzerTestOneInput((const uint8_t *)data, 4); > + > } > + > EOF

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

2018-11-17 Thread Yuya Nishihara
> > + $ if [ -x /usr/local/bin/gmake ] ; then > > + > MAKE=gmake > > Isn't this assuming that /usr/local/bin is in $PATH? IOW, shouldn't this > assignment be: > > MAKE=/usr/local/bin/gmake Perhaps, `type` or `which` can be used instead. `gmake` should be in PATH if it's supposed to

Re: [PATCH] lfs: ensure that the return of urlopener.open() is closed

2018-11-17 Thread Yuya Nishihara
On Fri, 16 Nov 2018 23:58:58 -0500, Matt Harbison wrote: > # HG changeset patch > # User Matt Harbison > # Date 1542338918 18000 > # Thu Nov 15 22:28:38 2018 -0500 > # Node ID ed9409b7db51778973328e933e657e4fdf73f573 > # Parent 93e5d18251d61b8abb2f6c6c9828a1c2f4f6fb57 > lfs: ensure that the

D5283: tests: add Balto configuration file

2018-11-17 Thread lothiraldan (Boris Feld)
lothiraldan created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY I have been developing a Mercurial test runner plugin for being able to run Mercurial tests with Balto

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

2018-11-17 Thread Matt Harbison
On Sat, 10 Nov 2018 23:57:39 -0500, Matt Harbison wrote: # HG changeset patch # User Matt Harbison # Date 1541912086 18000 # Sat Nov 10 23:54:46 2018 -0500 # Node ID 58afc797eaeba9c1d20e41fc832d70aef0f0e6b2 # Parent 2d9902f0ff175ff5e1baa4a4d8f7f37c7c9c7bf5 exthelper: drop Mercurial

[PATCH] branch: allow changing branch of merge commits with --rev

2018-11-17 Thread Anton Shestakov
# HG changeset patch # User Anton Shestakov # Date 1541743033 -28800 # Fri Nov 09 13:57:13 2018 +0800 # Node ID 353bb16507d9824888ba0abb4d35a4ed75189303 # Parent b93157f69f46a1359726be32bde4afb1e5af4384 # EXP-Topic branch-rev branch: allow changing branch of merge commits with --rev Tests

mercurial@40664: 8 new changesets

2018-11-17 Thread Mercurial Commits
8 new changesets in mercurial: https://www.mercurial-scm.org/repo/hg/rev/2eb48aa0acce changeset: 40657:2eb48aa0acce parent: 40654:fd1d41ccbe38 user:Boris Feld date:Thu Nov 15 14:57:26 2018 +0100 summary: sparse-revlog: align endrevidx usages in the _slicechunktosize