Permalink
Please
sign in to comment.
Browse files
test,tools: enable running tests under workers
Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: #20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
- Loading branch information...
Showing
with
274 additions
and 37 deletions.
- +5 −1 test/async-hooks/init-hooks.js
- +2 −0 test/async-hooks/test-crypto-pbkdf2.js
- +2 −0 test/async-hooks/test-crypto-randomBytes.js
- +3 −0 test/async-hooks/test-emit-before-after.js
- +4 −0 test/async-hooks/test-enable-disable.js
- +4 −1 test/async-hooks/test-fseventwrap.js
- +3 −0 test/async-hooks/test-fsreqwrap-readFile.js
- +3 −0 test/async-hooks/test-getaddrinforeqwrap.js
- +3 −0 test/async-hooks/test-getnameinforeqwrap.js
- +3 −2 test/async-hooks/test-graph.signal.js
- +4 −1 test/async-hooks/test-no-assert-when-disabled.js
- +3 −0 test/async-hooks/test-pipewrap.js
- +4 −0 test/async-hooks/test-promise.chain-promise-before-init-hooks.js
- +3 −0 test/async-hooks/test-promise.js
- +2 −0 test/async-hooks/test-signalwrap.js
- +4 −1 test/async-hooks/test-statwatcher.js
- +12 −0 test/common/index.js
- +1 −1 test/known_issues/test-stdin-is-always-net.socket.js
- +3 −0 test/parallel/test-async-hooks-disable-during-promise.js
- +1 −1 test/parallel/test-async-hooks-disable-gc-tracking.js
- +2 −2 test/parallel/test-async-hooks-enable-during-promise.js
- +1 −1 test/parallel/test-async-hooks-prevent-double-destroy.js
- +3 −0 test/parallel/test-async-hooks-promise-triggerid.js
- +3 −0 test/parallel/test-async-hooks-promise.js
- +3 −0 test/parallel/test-async-hooks-top-level-clearimmediate.js
- +3 −0 test/parallel/test-async-wrap-promise-after-enabled.js
- +3 −0 test/parallel/test-child-process-custom-fds.js
- +2 −1 test/parallel/test-child-process-http-socket-leak.js
- +5 −1 test/parallel/test-child-process-validate-stdio.js
- +3 −0 test/parallel/test-cli-eval.js
- +2 −0 test/parallel/test-cli-node-options-disallowed.js
- +2 −0 test/parallel/test-cli-node-options.js
- +2 −0 test/parallel/test-cluster-net-listen-relative-path.js
- +4 −3 test/parallel/test-console.js
- +2 −0 test/parallel/test-cwd-enoent-preload.js
- +2 −0 test/parallel/test-cwd-enoent-repl.js
- +2 −0 test/parallel/test-cwd-enoent.js
- +4 −1 test/parallel/test-debug-args.js
- +3 −0 test/parallel/test-fs-realpath.js
- +3 −0 test/parallel/test-fs-write-file-sync.js
- +2 −2 test/parallel/test-module-cjs-helpers.js
- +2 −0 test/parallel/test-preload.js
- +4 −2 test/parallel/test-process-chdir-errormessage.js
- +4 −1 test/parallel/test-process-chdir.js
- +5 −3 test/parallel/test-process-euid-egid.js
- +5 −2 test/parallel/test-process-exit-handler.js
- +3 −0 test/parallel/test-process-fatal-exception-tick.js
- +6 −4 test/parallel/test-process-uid-gid.js
- +3 −0 test/parallel/test-process-umask-mask.js
- +2 −0 test/parallel/test-process-umask.js
- +3 −0 test/parallel/test-repl-require.js
- +2 −0 test/parallel/test-repl-sigint-nested-eval.js
- +2 −0 test/parallel/test-repl-sigint.js
- +3 −0 test/parallel/test-repl-tab-complete.js
- +2 −0 test/parallel/test-require-symlink.js
- +2 −0 test/parallel/test-setproctitle.js
- +3 −2 test/parallel/test-signal-args.js
- +2 −0 test/parallel/test-signal-handler.js
- +3 −1 test/parallel/test-stdio-pipe-access.js
- +3 −1 test/parallel/test-stdio-pipe-redirect.js
- +9 −0 test/parallel/test-timers-immediate-unref-nested-once.js
- +5 −0 test/parallel/test-timers-immediate-unref-simple.js
- +3 −0 test/parallel/test-trace-events-all.js
- +2 −0 test/parallel/test-trace-events-api.js
- +3 −0 test/parallel/test-trace-events-async-hooks.js
- +3 −0 test/parallel/test-trace-events-binding.js
- +3 −0 test/parallel/test-trace-events-bootstrap.js
- +3 −0 test/parallel/test-trace-events-category-used.js
- +3 −0 test/parallel/test-trace-events-file-pattern.js
- +3 −0 test/parallel/test-trace-events-fs-sync.js
- +3 −0 test/parallel/test-trace-events-metadata.js
- +3 −0 test/parallel/test-trace-events-none.js
- +3 −0 test/parallel/test-trace-events-perf.js
- +3 −0 test/parallel/test-trace-events-process-exit.js
- +3 −0 test/parallel/test-trace-events-v8.js
- +3 −0 test/parallel/test-trace-events-vm.js
- +4 −1 test/sequential/test-async-wrap-getasyncid.js
- +0 −1 test/sequential/test-buffer-creation-regression.js
- +3 −0 test/sequential/test-fs-watch.js
- +3 −0 test/sequential/test-init.js
- +4 −0 test/sequential/test-inspector-overwrite-config.js
- +3 −0 test/sequential/test-performance.js
- +11 −0 tools/run-worker.js
- +7 −0 tools/test.py
Oops, something went wrong.
0 comments on commit
ed05d9a