-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V4.7.1 proposal #10395
V4.7.1 proposal #10395
Conversation
Required to support the shared library builds on AIX - this sets the shared library suffix within GYP to .a instead of .so on AIX My patch: https://codereview.chromium.org/2492233002/ was landed as as part of this one which fixed some other (not required, but included for completeness of the backport) changes: Ref: https://codereview.chromium.org/2511733005/ PR-URL: #9675 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
Updates to build the shared library version of node on AIX. Adds the same functionality to AIX that was added on Linux under this: Ref: #6994 PR-URL: #9675 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
Add --coverage option to configure to support compiling for generation of C based coverage reports PR-URL: #9463 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
PR-URL: #7894 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: #9453 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
PR-URL: #9502 Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
PR-URL: #9495 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
I've noticed that a few of the code examples have an minor indentation issue with the first line, for example: https://nodejs.org/api/child_process.html#child_process_child_process This commit attempt to fix this issue by using the solution provided provided by silverwind and hiendv. Fixes: #9381 PR-URL: #9482 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
Refs: nodejs/CTC#16 PR-URL: #9545 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
fix the index order in pseudocode of modules. PR-URL: #9562 Reviewed-By: Shigeki Ohtsu <[email protected]> Reviewed-By: Yosuke Furukawa <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
fix e.g., to e.g. in doc/http.md Fixes: nodejs/code-and-learn#58 PR-URL: #9564 Reviewed-By: Yosuke Furukawa <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Shigeki Ohtsu <[email protected]>
Fixes: nodejs/code-and-learn#58 PR-URL: #9568 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Shigeki Ohtsu <[email protected]>
Fixes: nodejs/code-and-learn#58 PR-URL: #9563 Reviewed-By: Yosuke Furukawa <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Shigeki Ohtsu <[email protected]>
It was a symbolic link to deps/v8/tools/run-valgrind.py before. We are going to make changes to it and we don't want to carry the patch forward so make a copy. PR-URL: #9520 Reviewed By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
The script had a dependency on the copy of valgrind that is bundled with V8 but that only gets checked out when doing a full depot_tools checkout. Use the system-provided valgrind. PR-URL: #9520 Reviewed By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
Node.js does not clean up on exit so don't complain about memory leaks but do complain about invalid memory access. In the future we may want to add a cleanup-on-exit flag or put together a suppression list. PR-URL: #9520 Reviewed By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
PR-URL: #9598 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1. As it is, it just tries to build only the `all.html` file. If none of the other files are built already, generated page will not be good. To fix this, we process the assets and generate HTML files first. 2. After the HTML is generated, `google-chrome` is used to open the generated file in browser. This is not very portable as it might not be installed or installations might have used a different name. So, we use Python's webbrowser module to open the file. PR-URL: #9436 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
The TSC and CTC meeting minutes are more properly placed in the nodejs/tsc and nodejs/ctc repositories, respectively. PR-URL: #9503 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
Ref: nodejs/Release#137 PR-URL: #9777 Reviewed-By: mhdawson - Michael Dawson <[email protected]> Reviewed-By: targos - Michaël Zasso <[email protected]>
Also, remove my key, since I never did a release. PR-URL: #9862 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Johan Bergström <[email protected]>
* remove unnecessary backslash (`\`) escaping in regular expressions * favor `===` over `==` * multiline arrays indentation consistent with other indentation PR-URL: #9374 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
The `.` character does not need to be escaped when it appears inside a regular expression character class. This removes instances of unnecessary escapes of the `.` character. This also removes a few unnecessary escapes of the `(` and `)` characters within character classes too. PR-URL: #9449 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Minwoo Jung <[email protected]> Reviewed-By: James Snell <[email protected]>
This commit adds a function to test/common.js that allows additional global variables to be whitelisted in a test. PR-URL: #7826 Reviewed-By: James M Snell <[email protected]>
The createInternalRepl() module accepts an options object as an argument. However, if one is provided, it overrides all of the default options. This commit applies the options object to the defaults, only changing the values that are explicitly set. PR-URL: #7826 Reviewed-By: James M Snell <[email protected]>
This commit splits several large event emitter tests into smaller block scoped tests. This keeps the tests more isolated. This commit also replaces var with const, assert.equal() with assert.stictEqual(), and other small enhancements. PR-URL: #6446 Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: James M Snell <[email protected]>
The typed array's underlying ArrayBuffer is used in `Buffer.from`. Let's respect it's .byteOffset or .byteLength (i.e. position within the parent ArrayBuffer). Fixes: #8001 PR-URL: #8002 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Prince John Wesley <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Let's test typed arrays which have a .byteOffset and .byteLength (i.e. typed arrays that are slices of parent typed arrays). PR-URL: #8002 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Prince John Wesley <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
The constructor and destructor shouldn't have been placed in the -inl.h file from the beginning. Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
This is how it's done everywhere else in core. Make it follow suit. Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
In this change, I've added the regex pattern to the assert.throws() in order to provide the validation argument for the call. PR-URL: #9918 Reviewed-By: Teddy Katz <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Fix incorrect use of string instead of RegExp in `throws` assertions. PR-URL: #9809 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Prince John Wesley <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
* var -> const. * Group and sort imports. * Replace use of the deprecated crypto.createCredentials. * Fix incorrect use of string instead of RegExp in `throws` assertions. * Clone array with `.slice()` and remove dependency on util. * assert.notEqual -> assert.notStrictEqual. * indexOf -> includes. PR-URL: #9807 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
* var -> const. * Group and sort imports. * Correctly align function arguments. * Fix incorrect use of string instead of RegExp in `throws` assertions. * assert.equal -> assert.strictEqual. * Verify that callbacks are called with common.mustCall. PR-URL: #9810 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]>
* More precise length assertion. * Fix incorrect use of string instead of RegExp in `throws` assertions. * Add missing RegExp to `throws` assertions. PR-URL: #9811 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
d26410d
to
a7a4b94
Compare
This LTS release comes with 180 commits. This includes 117 which are test related, 34 which are doc related, 15 which are build / tool related, and 1 commit which is an update to dependencies. Notable Changes: Coming Soon PR-URL: #10395
One more run of KOA to ensure failure was flake: https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/501/ CI one more time for smartOS: https://ci.nodejs.org/job/node-test-commit-smartos/6072/ |
@nodejs/platform-smartos we have the exact same failures on smartOS 15 and 16... but in separate runs. This is pretty odd https://ci.nodejs.org/job/node-test-commit-smartos/6007/nodes=smartos14-64/console Failures on 14
test failures on 15
|
I see a lot of the following:
in the console output of the Jenkins jobs for SmartOS. I would start looking at those. |
Before you start digging too deep; perhaps check the machines for lingering processes. It is likely the case. |
@jbergstroem I took a look at the machines and do not see any lingering processes at the moment. One more try: https://ci.nodejs.org/job/node-test-commit-smartos/6125/ |
@MylesBorins me neither! (see IRC for suggestions on how to quickly look) |
smartos is clean this time Moving forward with the release today |
I wouldn't think it's a SmartOS specific problem. Looking at the parallel tests that call
This seems inherently flaky on all platforms. There has been a few PRs in the past to turn some of them into using a dynamically allocated port, but not all of them have been converted to use that mechanism. |
@misterdjules the problem occurs if one run leaves lingering processes and the following attempts to use the same port. SmartOS has been having more lingering processes than other test systems as of late -- so this is more a symptom than a cause. |
Absolutely, that's one of the possible causes of this problem, and I'm well aware of it. However, @MylesBorins mentioned:
and it seemed you confirmed that observation. Now, that does not mean that there were no leftover processes from previous tests runs at the time the error occurred, but it is a possibility. So, with the hypothesis of no leftover processes in mind, I was wondering what else could trigger these errors. Are tests in |
a7a4b94
to
b460d9f
Compare
This LTS release comes with 180 commits. This includes 117 which are test related, 34 which are doc related, 15 which are build / tool related, and 1 commit which is an update to dependencies. Notable Changes: * build: - shared library support is now working for AIX builds (Stewart Addison) #9675 * repl: - Passing options to the repl will no longer overwrite defaults (cjihrig) #7826 * timers: - Re canceling a cancelled timers will no longer throw (Jeremiah Senkpiel) #9685 PR-URL: #10395
b460d9f
to
1035318
Compare
This LTS release comes with 180 commits. This includes 117 which are test related, 34 which are doc related, 15 which are build / tool related, and 1 commit which is an update to dependencies. Notable Changes: * build: - shared library support is now working for AIX builds (Stewart Addison) #9675 * repl: - Passing options to the repl will no longer overwrite defaults (cjihrig) #7826 * timers: - Re canceling a cancelled timers will no longer throw (Jeremiah Senkpiel) #9685 PR-URL: #10395
This LTS release comes with 180 commits. This includes 117 which are test related, 34 which are doc related, 15 which are build / tool related, and 1 commit which is an update to dependencies. Notable Changes: * build: - shared library support is now working for AIX builds (Stewart Addison) nodejs/node#9675 * repl: - Passing options to the repl will no longer overwrite defaults (cjihrig) nodejs/node#7826 * timers: - Re canceling a cancelled timers will no longer throw (Jeremiah Senkpiel) nodejs/node#9685 PR-URL: nodejs/node#10395 Signed-off-by: Ilkka Myller <[email protected]>
This LTS release comes with 180 commits. This includes 117 which are test related, 34 which are doc related, 15 which are build / tool related, and 1 commit which is an update to dependencies. Notable Changes: * build: - shared library support is now working for AIX builds (Stewart Addison) nodejs/node#9675 * repl: - Passing options to the repl will no longer overwrite defaults (cjihrig) nodejs/node#7826 * timers: - Re canceling a cancelled timers will no longer throw (Jeremiah Senkpiel) nodejs/node#9685 PR-URL: nodejs/node#10395 Signed-off-by: Ilkka Myller <[email protected]>
2016-01-03, Version 4.7.1 'Argon' (LTS), @thealphanerd
This LTS release comes with 180 commits. This includes 117 which are test related,
34 which are doc related, 15 which are build / tool related, and 1 commit which is
an update to dependencies.
Notable Changes
Coming Soon
Commits
c5f82b8421
] - assert: fix deepEqual/deepStrictEqual on equivalent typed arrays (Feross Aboukhadijeh) #800260883de30f
] - async_wrap: call destroy() callback in uv_idle_t (Trevor Norris)28dbc460c6
] - async_wrap: make Initialize a static class member (Trevor Norris)bb05cd13db
] - async_wrap: mode constructor/destructor to .cc (Trevor Norris)b1075f6193
] - benchmark: split timers benchmark and refactor (Rich Trott) #94977b4268b889
] - benchmark,lib,test,tools: remove unneeded . escape (Rich Trott) #944954f2ce8ea0
] - build: prioritise --shared-X-Y over pkg-config (Rod Vagg) #936861d377ddcd
] - build: Make configure file parseable on python3 (kalrover) #965738e0f95d24
] - build: add MAKEFLAGS="-j1" to node-gyp (Daniel Bevenius) #9450d1b6407395
] - build: make node-gyp output silent (Sakthipriyan Vairamani (thefourtheye)) #8990ae2eff2997
] - build: start comments at beginning of line (Sakthipriyan Vairamani (thefourtheye)) #93756f1f955b33
] - build: default to ppc64 on AIX (Gibson Fahnestock) #9645f8d4577762
] - build: Add option to compile for coverage reports (Wayne Andrews) #9463f2b00985f0
] - build: add shared library support to AIX build (Stewart Addison) #9675e2c5f41ddf
] - crypto: use SSL_get_servername. (Adam Langley) #9347724910a991
] - debugger: refactor _debugger.js (Rich Trott) #986052f14931a2
] - deps: backport GYP fix to fix AIX shared suffix (Stewart Addison) #9675c77ba8ce14
] - doc: consistent 'Returns:' (Roman Reiss) #9554aecb2cac37
] - doc: adding missing - in README (Italo A. Casas) #1017052c022992e
] - doc: removing extra space in README (Italo A. Casas) #10168e8c57bbe77
] - doc: add people to cc for async_wrap (Anna Henningsen) #9471b5eae4463c
] - doc: add link tonet.Server
in tls.md (Devon Rifkin) #10109ad841a29d1
] - doc: clarify fs.createReadStream options (Wes Tyler) #10078338014ef24
] - doc: rename writing_tests.md to writing-tests.md (Safia Abdalla) #9867b06b2343bc
] - doc: it’s -> its in api/child_process.md (Devon Rifkin) #100904885573080
] - doc: update Collaborators list in README (Rich Trott) #98463105becb2c
] - doc: remove minor contradiction in debugger doc (Rich Trott) #9832a858e98921
] - doc: clarify introductory module material (Rich Trott) #981618c38819fe
] - doc: improve description of moduleexports
(Sam Roberts) #96229e68b8d329
] - doc: fix crypto Verify cut-n-paste from Sign (子丶言) #9796fd1a48c9c9
] - doc: minor fixes event-loop-timers-and-nexttick.md (Dan Koster) #9126107735a6e1
] - doc: changed order of invocations in https.request() example. (atrioom) #9614eb5972fe9b
] - doc: fix crypto "decipher.setAAD()" typo (子丶言) #9782dc4c348ea3
] - doc: fix typo in assert code example (Vse Mozhet Byt) #970416e97ab6c6
] - doc: fix typo in BUILDING.md (monkick) #95694f2e25441e
] - doc: remove backtick escaping for manpage refs (Anna Henningsen) #9632c0d44dfcc7
] - doc: remove invalid padding from privateEncrypt (JungMinu) #96110f523583c3
] - doc: remove Sam Roberts from release team (Sam Roberts) #98624eeac8eb8c
] - doc: add guide for maintaining V8 (Ali Ijaz Sheikh) #977734405ddb83
] - doc: move TSC and CTC meeting minutes out of core repo (James M Snell) #9503198463a0ff
] - doc: fix a typo in the assert.md (Vse Mozhet Byt) #9598aca0ede0d3
] - doc: fix typo e.g., => e.g. (Daijiro Yamada) #9563c7997939f2
] - doc: fix typo about cluster doc, (eg. -> e.g.) (YutamaKotaro) #9568229fa6921f
] - doc: fix e.g., to e.g. in doc/http.md (ikasumi_wt) #95643ad7430f12
] - doc: fix the index order in pseudocode of modules (kohta ito) #956206732babd3
] - doc: remove Roadmap Working Group (William Kapke) #95456775163a94
] - doc: fix minor style issue in code examples (Daniel Bevenius) #9482aa25c74fe6
] - doc: grammar and structure revisions of wg doc (Ryan Lewis) #94951e06ed7e9d
] - doc: clarify the exit code part of writing_tests (Jeremiah Senkpiel) #95023f39a39657
] - doc: Fix inaccuracy in https.request docs (Andreas Lind) #94538380154e22
] - doc: add npm link to README (Oscar Morrison) #789465e134ff12
] - meta: whitelist dotfiles in .gitignore (Claudio Rodriguez) #8016698bf2e829
] - repl: don't override all internal repl defaults (cjihrig) #78263d45b35f73
] - repl: refactor lib/repl.js (Rich Trott) #9374f5b952b221
] - test: refactor and fix test-dns (Michaël Zasso) #98118b733dca05
] - test: refactor test-crypto-binary-default (Michaël Zasso) #981045af7857d7
] - test: refactor and fix test-crypto (Michaël Zasso) #9807e0c8aafad8
] - test: fix test-buffer-slow (Michaël Zasso) #9809e72dfce2c8
] - test: added validation regex argument to test (Avery, Frank) #9918a779e7ffec
] - test: clean up repl-reset-event file (Kailean Courtney) #99314022579b6e
] - test: improve domain-top-level-error-handler-throw (CodeVana) #9950d3edaa3dc3
] - test: replace var with const in test-require-dot (Amar Zavery) #99168694811ef0
] - test: refactor test-net-pingpong (Michaël Zasso) #9812e849dd0ff3
] - test: Use strictEqual in test-tls-writewrap-leak (Aaron Petcoff) #96660662429268
] - test: fix test-tls-connect-address-family (mkamakura) #9573420e7f17d9
] - test: fix test-http-status-reason-invalid-chars (Yosuke Saito) #957213cace140f
] - test: fix helper-debugger-repl.js (Rich Trott) #9486aebbc965f9
] - test: refactor large event emitter tests (cjihrig) #6446b5012f3de2
] - test: add expectWarning to common (Michaël Zasso) #8662b98813d97c
] - test: refactor test-fs-non-number-arguments-throw (Michaël Zasso) #984480a752708a
] - test: refactor test-dgram-exclusive-implicit-bind (Cesar Hernandez) #100669b974b4d54
] - test: useassert.strictEqual
(anoff) #9975bc125bd729
] - test: change assert.equal to assert.strictEqual (Aileen) #99465049a10278
] - test: changed assert.equal to assert.strictEqual (vazina robertson) #10015b5c60edeed
] - test: renamed assert.Equal to assert.strictEqual (Jared Young)f44e828a36
] - test: improves test-tls-client-verify (Paul Graham) #10051a1e3967f69
] - test: refactor test-https-agent-session-reuse (Diego Paez) #101059e46af6412
] - test: refactor test-beforeexit-event (Rob Adelmann) #10121adcd6ea66f
] - test: refactor test-domain-from-timer (Daniel Sims) #98891377ea87eb
] - test: refactor test-domain-exit-dispose-again (Ethan Arrowood) #100038a9af6843d
] - test: use const and strictEqual in test-os-homedir-no-envvar (CodeVana) #9899ee038c0e71
] - test: refactor test-dgram-bind-default-address (Michael-Bryant Choa) #9947a090899e93
] - test: assert.throws() should include a RegExp (Chris Bystrek) #9976542b40f410
] - test: refactor test-event-emitter-method-names (Rodrigo Palma) #10027a2023a9d97
] - test: refactor tls-ticket-cluster (Yojan Shrestha) #10023a64f40680f
] - test: refactor test-domain-exit-dispose (Chris Henney) #9938a896d4ed36
] - test: refactor test-stdin-from-file.js (amrios) #10012ce14c1e51f
] - test: refactor test-require-extensions-main (Daryl Thayil) #9912b9c45026f7
] - test: clean up tls junk test (Danny Guo) #9940e3712334a3
] - test: update test-stdout-to-file (scalkpdev) #993963f571e69c
] - test: changed assert.Equal to asset.strictEqual (Paul Chin) #9973c3a3480606
] - test: refactor test-domain-multi (Wes Tyler) #9963ad27555ff8
] - test: use assert.strictEqual in test-cli-eval (Nigel Kibodeaux) #9919cffd51e815
] - test: refactor test-tls-connect-simple (Russell Sherman) #99341424c25f3e
] - test: refactor test-signal-unregister (mark hughes) #9920920737180f
] - test: refactor test-require-resolve (blugavere) #1012071ab88cc80
] - test: refactor test-fs-read-stream-resume (Matt Webb) #99276a485da87c
] - test: replace equal with strictEqual (Tracy Hinds) #10011b5d87569e1
] - test: use strictEqual instead of equal (Uttam Pawar) #9921c94c2fde8a
] - test: using const and strictEqual (Fabrice Tatieze) #992616164b5b44
] - test: test-file-write-stream3.js refactor (Richard Karmazin) #100357391983729
] - test: implemented es6 conventions (Erez Weiss) #966950ce3f91d7
] - test: update assert.equal() to assert.strictEqual() (Peter Diaz) #100243f9d75c481
] - test: use const or let and assert.strictEqual (Christopher Rokita) #1000198afba5676
] - test: use strictEqual() domain-http (cdnadmin) #999607680b65fe
] - test: refactor test-cluster-worker-events (fmizzell) #9994a3db54416f
] - test: update repl tests (makenova) #9991db3cdd2449
] - test: adding strictEqual to test-buffer-indexof.js (Eric Gonzalez) #9955f670b05603
] - test: strictEqual in test-beforeexit-event.js (CodeTheInternet) #1000470b4d7d3a2
] - test: refactor test-child-process-double-pipe (Dan Villa) #99301e53cf4764
] - test: updated test-stream-pipe-unpipe-stream (Raja Panidepu) #1010057d48ac3f4
] - test: refactor test-crypto-ecb (michael6) #1002989feb8dc4d
] - test: refactor test-require-exceptions (Oscar Martinez) #988259f259c487
] - test: refactor test-crypto-certificate (Josh Mays) #9911815715d850
] - test: refactor test-domain (Johnny Reading) #989008cc269338
] - test: refactor test-cli-syntax (Exlipse7) #1005791d27ce4db
] - test: refactor test-child-process-constructor (k3kathy) #10060ae9e2a21c1
] - test: var to const, assert.equal to assert.strictEqual in net (Sean Villars) #990730c9474286
] - test: changed vars to const in test-net-better-error-messages-listen-path.js (anoff) #9905bcbf50d9ba
] - test: refactor test-http-dns-error (Outsider) #1006200f08640ce
] - test: assert.equal -> assert.strictEqual (davidmarkclements) #10065d9cca393e9
] - test: assert.equal -> assert.strictEqual (davidmarkclements) #100676c64f6c445
] - test: improve test for crypto padding (Julian Duque) #990637d734ae36
] - test: polish test-net-better-error-messages-listen (Hitesh Kanwathirtha) #10087f126b44a3a
] - test: change var to const in test-tls-key-mismatch.js (bjdelro) #98977538dd5c93
] - test: use strictEqual in cwd-enoent (JDHarmon) #1007739816a43af
] - test: refactor test-fs-read-stream-inherit.js (Jonathan Darling) #98947615a0f2cd
] - test: refactor test-child-process-stdio-inherit (Wes Tyler) #98932a9ab8ea2a
] - test: change var to const for require and strict equality checks (Harish Tejwani) #98925cd7e7aaf1
] - test: Update to const and use regex for assertions (Daniel Flores) #98911a73cc5357
] - test: swap var->const/let and equal->strictEqual (Peter Masucci) #9888552169e950
] - test: replace equal with strictEqual in crypto (Julian Duque) #988649900e78b0
] - test: replace equal with strictEqual (Julian Duque) #9879998db3a003
] - test: refactor test-tls-timeout-server-2 (Devon Rifkin) #9876aaab51047f
] - test: Changed assert.equal to assert.strictEqual (Daniel Pittman) #9902a4488c3cbd
] - test: refactor test-vm-syntax-error-stderr.js (Jay Brownlee) #9900cff80a5c0e
] - test: refactor test-tls-destroy-whilst-write (Chris Bystrek) #100648257671bdc
] - test: refactor test-https-truncate (davidmarkclements) #10074457af874b5
] - test: use strictEqual in test-cli-eval-event.js (Richard Karmazin) #99642890f0d904
] - test: refactor test-tls-friendly-error-message.js (Adrian Estrada) #9967c37ae4a1b6
] - test: refactor test-vm-static-this.js (David Bradford) #98879473fc6c2f
] - test: refactor test-crypto-cipheriv-decipheriv (Aileen) #100186ecc4ffb1c
] - test: refactor test for crypto cipher/decipher iv (Julian Duque) #9943a486f6bad4
] - test: refactor test-cluster-setup-master-argv (Oscar Martinez) #9960384c954698
] - test: refactor test-cluster-setup-master-argv (Christine Hong) #999376645e8781
] - test: use assert.strictEqual in test-crypto-ecb (Daniel Pittman) #99809103c3d3fe
] - test: update to const iin cluster test (Greg Valdez) #1000727c9171586
] - test: use assert.strictEqual() cluster test (Bidur Adhikari) #100422453d64aa7
] - test: var -> let/const, .equal -> .strictEqual (shiya) #99131467c964a4
] - test: increase coverage for timers (lrlna) #10068e47195cf78
] - test: change equal to strictEqual (Kevin Zurawel) #987233da22aba1
] - test: add toASCII and toUnicode punycode tests (Claudio Rodriguez) #97414c5d24b632
] - test: refine test-http-status-reason-invalid-chars (Rich Trott) #980281d49aaeb2
] - test: exclude no_interleaved_stdio test for AIX (Michael Dawson) #9772b59cf582e4
] - test: refactor test-async-wrap-* (Rich Trott) #966357cc5cb277
] - test: use setImmediate() in test of stream2 (masashi.g) #95838345ffb0a0
] - test: add test case of PassThrough (Yoshiya Hinosawa) #9581beb147a08b
] - test: check thatprocess.execPath
is a realpath (Anna Henningsen) #9229cef5b1fa14
] - test: add test for broken child process stdio (cjihrig) #952829ab76b791
] - test: ensure nextTick is not scheduled in exit (Jeremiah Senkpiel) #9555b87fe250d2
] - test: change from setTimeout to setImmediate (MURAKAMI Masahiko) #9578eca12d4316
] - test: improve test-stream2-objects.js (Yoshiya Hinosawa) #95654e36a14c15
] - test: refactor test-next-tick-error-spin (Rich Trott) #9537b2b2bc2293
] - test: move timer-dependent test to sequential (Rich Trott) #94871436fd70f5
] - test: convert assert.equal to assert.strictEqual (Jonathan Darling) #9925c9ed49da6e
] - test: run cpplint on files in test/cctest (Ben Noordhuis) #978710d4f470f8
] - test: enable addons test to pass with debug build (Daniel Bevenius) #8836550393dc78
] - test: add new.target add-on regression test (Ben Noordhuis) #968976245b2156
] - test: refactor large event emitter tests (cjihrig) #644602e8187751
] - test: allow globals to be whitelisted (cjihrig) #7826c0c5608bfc
] - test,assert: add deepEqual/deepStrictEqual tests for typed arrays (Feross Aboukhadijeh) #8002759e8fdd18
] - timers: bail from intervals if _repeat is bad (Jeremiah Senkpiel) #10365553d95da15
] - timers: use consistent checks for canceled timers (Jeremiah Senkpiel) #96855c6d908dd7
] - tools: enable final newline in .editorconfig (Roman Reiss) #941006e8120928
] - tools: remove unneeded escaping in generate.js (Rich Trott) #9781fd6b305421
] - tools: use better regexp for manpage references (Anna Henningsen) #96329b36469a3c
] - tools: improve docopen target in Makefile (Sakthipriyan Vairamani (thefourtheye)) #9436e3dc05d01b
] - tools: make run-valgrind.py useful (Ben Noordhuis) #95207b1b11a11c
] - tools: fix run-valgrind.py script (Ben Noordhuis) #9520011ee0ba8b
] - tools: copy run-valgrind.py to tools/ (Ben Noordhuis) #9520