add some passing tests and fix sort order
Reviewed-by: kinsleyw
This commit is contained in:
parent
9beb5a7dbc
commit
173007811b
@ -94,6 +94,7 @@ source.test.simple.list = \
|
||||
test-buffer.js \
|
||||
test-buffer-concat.js \
|
||||
test-buffer-regress-GH-2659.js \
|
||||
test-c-ares.js \
|
||||
test-chdir.js \
|
||||
test-child-process-buffering.js \
|
||||
test-child-process-customfd-bounded.js \
|
||||
@ -108,7 +109,10 @@ source.test.simple.list = \
|
||||
test-child-process-exit-code.js \
|
||||
test-child-process-fork-and-spawn.js \
|
||||
test-child-process-fork-close.js \
|
||||
test-child-process-fork-dgram.js \
|
||||
test-child-process-fork-exec-argv.js \
|
||||
test-child-process-fork-getconnections.js \
|
||||
test-child-process-fork-net.js \
|
||||
test-child-process-fork-ref.js \
|
||||
test-child-process-fork-ref2.js \
|
||||
test-child-process-fork.js \
|
||||
@ -130,6 +134,7 @@ source.test.simple.list = \
|
||||
test-cluster-bind-twice-v1.js \
|
||||
test-cluster-dgram-1.js \
|
||||
test-cluster-dgram-2.js \
|
||||
test-cluster-disconnect.js \
|
||||
test-cluster-eaddrinuse.js \
|
||||
test-cluster-fork-env.js \
|
||||
test-cluster-http-pipe.js \
|
||||
@ -148,10 +153,17 @@ source.test.simple.list = \
|
||||
test-console.js \
|
||||
test-console-instance.js \
|
||||
test-console-not-call-toString.js \
|
||||
test-crypto-ecb.js \
|
||||
test-crypto-hash-stream-pipe.js \
|
||||
test-crypto-padding-aes256.js \
|
||||
test-crypto-padding.js \
|
||||
test-crypto-random.js \
|
||||
test-crypto-verify-failure.js \
|
||||
test-delayed-require.js \
|
||||
test-dgram-address.js \
|
||||
test-dgram-bind.js \
|
||||
test-dgram-bind-default-address.js \
|
||||
test-dgram-broadcast-multi-process.js \
|
||||
test-dgram-close.js \
|
||||
test-dgram-implicit-bind.js \
|
||||
test-dgram-listen-after-bind.js \
|
||||
@ -182,6 +194,7 @@ source.test.simple.list = \
|
||||
test-event-emitter-max-listeners.js \
|
||||
test-event-emitter-memory-leak.js \
|
||||
test-event-emitter-modify-in-emit.js \
|
||||
test-event-emitter-no-error-provided-to-error-event.js \
|
||||
test-event-emitter-num-args.js \
|
||||
test-event-emitter-once.js \
|
||||
test-event-emitter-remove-all-listeners.js \
|
||||
@ -227,6 +240,8 @@ source.test.simple.list = \
|
||||
test-fs-symlink.js \
|
||||
test-fs-symlink-dir-junction.js \
|
||||
test-fs-sync-fd-leak.js \
|
||||
test-fs-truncate.js \
|
||||
test-fs-truncate-GH-6233.js \
|
||||
test-fs-utimes.js \
|
||||
test-fs-watch.js \
|
||||
test-fs-write.js \
|
||||
@ -253,6 +268,7 @@ source.test.simple.list = \
|
||||
test-http-bind-twice.js \
|
||||
test-http-blank-header.js \
|
||||
test-http-buffer-sanity.js \
|
||||
test-http-byteswritten.js \
|
||||
test-http-chunked-304.js \
|
||||
test-http-chunked.js \
|
||||
test-http-client-abort.js \
|
||||
@ -283,6 +299,7 @@ source.test.simple.list = \
|
||||
test-http-exceptions.js \
|
||||
test-http-expect-continue.js \
|
||||
test-http-extra-response.js \
|
||||
test-http-full-response.js \
|
||||
test-http-get-pipeline-problem.js \
|
||||
test-http-head-request.js \
|
||||
test-http-head-response-has-no-body.js \
|
||||
@ -301,7 +318,6 @@ source.test.simple.list = \
|
||||
test-http-many-ended-pipelines.js \
|
||||
test-http-many-keep-alive-connections.js \
|
||||
test-http-max-headers-count.js \
|
||||
test-mkdir-rmdir.js \
|
||||
test-http-multi-line-headers.js \
|
||||
test-http-mutable-headers.js \
|
||||
test-http-no-content-length.js \
|
||||
@ -322,6 +338,7 @@ source.test.simple.list = \
|
||||
test-http-response-readable.js \
|
||||
test-http-server-multiheaders.js \
|
||||
test-http-server.js \
|
||||
test-http-server-stale-close.js \
|
||||
test-http-set-cookies.js \
|
||||
test-http-set-timeout-server.js \
|
||||
test-http-set-timeout.js \
|
||||
@ -369,12 +386,16 @@ source.test.simple.list = \
|
||||
test-https-timeout-server.js \
|
||||
test-https-timeout.js \
|
||||
test-init.js \
|
||||
test-listen-fd-cluster.js \
|
||||
test-listen-fd-detached-inherit.js \
|
||||
test-listen-fd-detached.js \
|
||||
test-listen-fd-ebadf.js \
|
||||
test-listen-fd-server.js \
|
||||
test-listen-fd-detached-inherit.js \
|
||||
test-memory-usage.js \
|
||||
test-memory-usage-emfile.js \
|
||||
test-mkdir-rmdir.js \
|
||||
test-module-loading.js \
|
||||
test-net-GH-5504.js \
|
||||
test-net-after-close.js \
|
||||
test-net-binary.js \
|
||||
test-net-bind-twice.js \
|
||||
@ -411,7 +432,8 @@ source.test.simple.list = \
|
||||
test-net-server-unref.js \
|
||||
test-net-settimeout.js \
|
||||
test-net-socket-destroy-twice.js \
|
||||
test-net-socket-timeout.js \
|
||||
test-net-socket-timeout.js \
|
||||
test-net-socket-timeout-unref.js \
|
||||
test-net-stream.js \
|
||||
test-net-write-after-close.js \
|
||||
test-net-write-connect-write.js \
|
||||
@ -419,9 +441,9 @@ source.test.simple.list = \
|
||||
test-next-tick.js \
|
||||
test-next-tick-doesnt-hang.js \
|
||||
test-next-tick-errors.js \
|
||||
test-next-tick-intentional-starvation.js \
|
||||
test-next-tick-ordering.js \
|
||||
test-next-tick-ordering2.js \
|
||||
test-next-tick-intentional-starvation.js \
|
||||
test-os.js \
|
||||
test-path.js \
|
||||
test-path-makelong.js \
|
||||
@ -481,11 +503,13 @@ source.test.simple.list = \
|
||||
test-require-exceptions.js \
|
||||
test-require-resolve.js \
|
||||
test-script-context.js \
|
||||
test-script-static-context.js \
|
||||
test-script-new.js \
|
||||
test-script-static-context.js \
|
||||
test-script-static-new.js \
|
||||
test-script-static-this.js \
|
||||
test-script-this.js \
|
||||
test-sigint-infinite-loop.js \
|
||||
test-signal-unregister.js \
|
||||
test-socket-write-after-fin-error.js \
|
||||
test-socket-write-after-fin.js \
|
||||
test-stdin-child-proc.js \
|
||||
@ -496,6 +520,7 @@ source.test.simple.list = \
|
||||
test-stdin-pipe-resume.js \
|
||||
test-stdin-resume-pause.js \
|
||||
test-stdio-readable-writable.js \
|
||||
test-stdout-cannot-be-closed-child-process-pipe.js \
|
||||
test-stdout-close-unref.js \
|
||||
test-stdout-to-file.js \
|
||||
test-stream-big-push.js \
|
||||
@ -508,25 +533,28 @@ source.test.simple.list = \
|
||||
test-stream-push-strings.js \
|
||||
test-stream-readable-event.js \
|
||||
test-stream-readable-flow-recursion.js \
|
||||
test-stream-transform-objectmode-falsey-value.js \
|
||||
test-stream-unshift-empty-chunk.js \
|
||||
test-stream-unshift-read-race.js \
|
||||
test-stream-writable-decoded-encoding.js \
|
||||
test-stream2-basic.js \
|
||||
test-stream2-compatibility.js \
|
||||
test-stream2-finish-pipe.js \
|
||||
test-stream2-fs.js \
|
||||
test-stream2-finish-pipe.js \
|
||||
test-stream2-httpclient-response-end.js \
|
||||
test-stream2-large-read-stall.js \
|
||||
test-stream2-objects.js \
|
||||
test-stream2-pipe-error-handling.js \
|
||||
test-stream2-pipe-error-once-listener.js \
|
||||
test-stream2-push.js \
|
||||
test-stream2-read-sync-stack.js \
|
||||
test-stream2-readable-empty-buffer-no-eof.js \
|
||||
test-stream2-readable-from-list.js \
|
||||
test-stream2-readable-legacy-drain.js \
|
||||
test-stream2-readable-non-empty-end.js \
|
||||
test-stream2-readable-wrap-empty.js \
|
||||
test-stream2-pipe-error-once-listener.js \
|
||||
test-stream2-httpclient-response-end.js \
|
||||
test-stream2-readable-wrap.js \
|
||||
test-stream2-readable-wrap-empty.js \
|
||||
test-stream2-set-encoding.js \
|
||||
test-stream2-stderr-sync.js \
|
||||
test-stream2-transform.js \
|
||||
@ -557,14 +585,17 @@ source.test.simple.list = \
|
||||
test-tls-client-resume.js \
|
||||
test-tls-client-verify.js \
|
||||
test-tls-connect-given-socket.js \
|
||||
test-tls-connect-simple.js \
|
||||
test-tls-connect-pipe.js \
|
||||
test-tls-connect-simple.js \
|
||||
test-tls-connect.js \
|
||||
test-tls-fast-writing.js \
|
||||
test-tls-handshake-nohang.js \
|
||||
test-tls-hello-parser-failure.js \
|
||||
test-tls-interleave.js \
|
||||
test-tls-invalid-key.js \
|
||||
test-tls-junk-closes-server.js \
|
||||
test-tls-npn-server-client.js \
|
||||
test-tls-ondata.js \
|
||||
test-tls-over-http-tunnel.js \
|
||||
test-tls-passphrase.js \
|
||||
test-tls-pause-close.js \
|
||||
@ -607,5 +638,5 @@ source.test.simple.list = \
|
||||
test-zlib-from-string.js \
|
||||
test-zlib-invalid-input.js \
|
||||
test-zlib-random-byte-pipes.js \
|
||||
test-zlib-zero-byte.js \
|
||||
test-zlib-write-after-flush.js
|
||||
test-zlib-write-after-flush.js \
|
||||
test-zlib-zero-byte.js
|
||||
|
Loading…
Reference in New Issue
Block a user