Skip to content

Instantly share code, notes, and snippets.

@shigeki
Last active August 29, 2015 14:19
Show Gist options
  • Save shigeki/fd25f15657f058ceccea to your computer and use it in GitHub Desktop.
Save shigeki/fd25f15657f058ceccea to your computer and use it in GitHub Desktop.
iojs test results in Android with a private patch
diff --git a/configure b/configure
index 19ec28f..4e27399 100755
--- a/configure
+++ b/configure
@@ -578,6 +578,10 @@ def configure_mips(o):
def configure_node(o):
if options.dest_os == 'android':
o['variables']['OS'] = 'android'
+ # PIE(Position-Independent Executable) build is needed above Android 5.x
+ o['cflags'] = ['-pie', '-fPIE']
+ o['ldflags'] = ['-pie', '-fPIE']
+
o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
o['variables']['node_install_npm'] = b(not options.without_npm)
o['default_configuration'] = 'Debug' if options.debug else 'Release'
@@ -668,7 +672,7 @@ def configure_libz(o):
def configure_http_parser(o):
o['variables']['node_shared_http_parser'] = b(options.shared_http_parser)
-
+
if b(options.shared_http_parser) == True:
o['libraries'] += ['-l%s' % options.shared_http_parser_libname]
if options.shared_http_parser_libpath:
diff --git a/lib/child_process.js b/lib/child_process.js
index 0fdbcf4..6716455 100644
--- a/lib/child_process.js
+++ b/lib/child_process.js
@@ -568,6 +568,9 @@ function normalizeExecArgs(command /*, options, callback */) {
// options object.
options = util._extend({}, options);
options.windowsVerbatimArguments = true;
+ } else if (process.platform === 'android') {
+ file = '/system/bin/sh';
+ args = ['-c', command];
} else {
file = '/bin/sh';
args = ['-c', command];
diff --git a/lib/dns.js b/lib/dns.js
index d39eec8..90cf493 100644
--- a/lib/dns.js
+++ b/lib/dns.js
@@ -129,7 +129,7 @@ exports.lookup = function lookup(hostname, options, callback) {
// FIXME(indutny): V4MAPPED on FreeBSD results in EAI_BADFLAGS, because
// the libc does not support it
- if (process.platform === 'freebsd' && family !== 6)
+ if ((process.platform === 'freebsd' || process.platform === 'android') && family !== 6)
hints &= ~exports.V4MAPPED;
} else {
family = options >>> 0;
diff --git a/tools/test.py b/tools/test.py
index 1de2661..5a11054 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -41,7 +41,7 @@ import tempfile
import time
import threading
import utils
-import multiprocessing
+# import multiprocessing
import errno
from os.path import join, dirname, abspath, basename, isdir, exists
@@ -1273,8 +1273,8 @@ def ProcessOptions(options):
VERBOSE = options.verbose
options.arch = options.arch.split(',')
options.mode = options.mode.split(',')
- if options.J:
- options.j = multiprocessing.cpu_count()
+# if options.J:
+# options.j = multiprocessing.cpu_count()
return True
# --mode=release message parallel sequential
1..1844
1..1844
1..842
ok 1 - test-arm-math-exp-regress-1376.js
---
duration_ms: 0.646
...
ok 2 - test-assert.js
---
duration_ms: 1.188
...
ok 3 - test-bad-unicode.js
---
duration_ms: 0.743
...
ok 4 - test-beforeexit-event.js
---
duration_ms: 0.861
...
ok 5 - test-beforeexit-event-exit.js
---
duration_ms: 0.753
...
ok 6 - test-buffer.js
---
duration_ms: 0.946
...
ok 7 - test-buffer-ascii.js
---
duration_ms: 0.735
...
ok 8 - test-buffer-concat.js
---
duration_ms: 0.855
...
ok 9 - test-buffer-indexof.js
---
duration_ms: 0.835
...
ok 10 - test-buffer-inspect.js
---
duration_ms: 0.822
...
ok 11 - test-buffer-iterator.js
---
duration_ms: 0.847
...
ok 12 - test-buffer-slice.js
---
duration_ms: 0.756
...
ok 13 - test-c-ares.js
---
duration_ms: 0.845
...
ok 14 - test-child-process-buffering.js
---
duration_ms: 0.956
...
ok 15 - test-child-process-cwd.js
---
duration_ms: 0.947
...
not ok 16 - test-child-process-default-options.js
#events.js:141
# throw er; // Unhandled 'error' event
# ^
#Error: spawn /usr/bin/env ENOENT
# at exports._errnoException (util.js:749:11)
# at Process.ChildProcess._handle.onexit (child_process.js:990:32)
# at child_process.js:1082:20
# at process._tickCallback (node.js:340:13)
# at Function.Module.runMain (module.js:453:11)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.849
...
ok 17 - test-child-process-detached.js
---
duration_ms: 1.441
...
ok 18 - test-child-process-disconnect.js
---
duration_ms: 1.540
...
ok 19 - test-child-process-double-pipe.js
---
duration_ms: 0.975
...
not ok 20 - test-child-process-env.js
#events.js:141
# throw er; // Unhandled 'error' event
# ^
#Error: spawn /usr/bin/env ENOENT
# at exports._errnoException (util.js:749:11)
# at Process.ChildProcess._handle.onexit (child_process.js:990:32)
# at child_process.js:1082:20
# at process._tickCallback (node.js:340:13)
# at Function.Module.runMain (module.js:453:11)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.956
...
ok 21 - test-child-process-exec-buffer.js
---
duration_ms: 0.937
...
ok 22 - test-child-process-exec-cwd.js
---
duration_ms: 0.837
...
not ok 23 - test-child-process-exec-env.js
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: 1 == 0
# at process.<anonymous> (/data/tmp/test/parallel/test-child-process-exec-env.js:35:10)
# at emitOne (events.js:82:20)
# at process.emit (events.js:166:7)
#error!: 127
#stdout: ""
#stderr: "/system/bin/sh: /usr/bin/env: not found\n"
#response:
---
duration_ms: 0.951
...
ok 24 - test-child-process-exec-error.js
---
duration_ms: 0.932
...
ok 25 - test-child-process-exit-code.js
---
duration_ms: 1.684
...
ok 26 - test-child-process-fork.js
---
duration_ms: 1.437
...
ok 27 - test-child-process-fork-and-spawn.js
---
duration_ms: 2.70
...
ok 28 - test-child-process-fork-close.js
---
duration_ms: 1.481
...
ok 29 - test-child-process-fork-dgram.js
---
duration_ms: 1.461
...
ok 30 - test-child-process-fork-exec-argv.js
---
duration_ms: 1.957
...
ok 31 - test-child-process-fork-exec-path.js
---
duration_ms: 3.150
...
ok 32 - test-child-process-fork-net.js
---
duration_ms: 1.640
...
ok 33 - test-child-process-fork-net2.js
---
duration_ms: 1.779
...
ok 34 - test-child-process-fork-ref.js
---
duration_ms: 1.745
...
ok 35 - test-child-process-fork-ref2.js
---
duration_ms: 1.827
...
ok 36 - test-child-process-fork3.js
---
duration_ms: 1.445
...
ok 37 - test-child-process-internal.js
---
duration_ms: 1.356
...
ok 38 - test-child-process-ipc.js
---
duration_ms: 1.531
...
ok 39 - test-child-process-kill.js
---
duration_ms: 0.840
...
ok 40 - test-child-process-recv-handle.js
---
duration_ms: 1.544
...
ok 41 - test-child-process-send-utf8.js
---
duration_ms: 1.561
...
ok 42 - test-child-process-set-blocking.js
---
duration_ms: 0.907
...
ok 43 - test-child-process-silent.js
---
duration_ms: 2.30
...
ok 44 - test-child-process-spawn-error.js
---
duration_ms: 0.854
...
ok 45 - test-child-process-spawn-typeerror.js
---
duration_ms: 0.940
...
ok 46 - test-child-process-spawnsync.js
---
duration_ms: 1.859
...
ok 47 - test-child-process-spawnsync-env.js
---
duration_ms: 1.432
...
ok 48 - test-child-process-spawnsync-input.js
---
duration_ms: 5.79
...
ok 49 - test-child-process-spawnsync-timeout.js
---
duration_ms: 1.49
...
ok 50 - test-child-process-stdin.js
---
duration_ms: 0.938
...
ok 51 - test-child-process-stdin-ipc.js
---
duration_ms: 1.433
...
ok 52 - test-child-process-stdio.js
---
duration_ms: 0.926
...
ok 53 - test-child-process-stdio-big-write-end.js
---
duration_ms: 1.598
...
ok 54 - test-child-process-stdio-inherit.js
---
duration_ms: 1.458
...
ok 55 - test-child-process-stdout-flush.js
---
duration_ms: 1.747
...
ok 56 - test-child-process-stdout-flush-exit.js
---
duration_ms: 1.443
...
ok 57 - test-cli-eval.js
---
duration_ms: 3.335
...
ok 58 - test-cluster-basic.js
---
duration_ms: 1.646
...
not ok 59 - test-cluster-bind-privileged-port.js
#/data/tmp/test/parallel/test-cluster-bind-privileged-port.js:11
#if (process.getuid() === 0) {
# ^
#TypeError: undefined is not a function
# at Object.<anonymous> (/data/tmp/test/parallel/test-cluster-bind-privileged-port.js:11:13)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.725
...
ok 60 - test-cluster-bind-twice.js
---
duration_ms: 2.444
...
ok 61 - test-cluster-dgram-1.js
---
duration_ms: 1.780
...
ok 62 - test-cluster-dgram-2.js
---
duration_ms: 1.657
...
ok 63 - test-cluster-disconnect.js
---
duration_ms: 4.177
...
ok 64 - test-cluster-disconnect-before-exit.js
---
duration_ms: 1.347
...
ok 65 - test-cluster-disconnect-idle-worker.js
---
duration_ms: 1.548
...
ok 66 - test-cluster-disconnect-unshared-tcp.js
---
duration_ms: 2.81
...
ok 67 - test-cluster-disconnect-unshared-udp.js
---
duration_ms: 1.942
...
ok 68 - test-cluster-disconnect-with-no-workers.js
---
duration_ms: 0.850
...
ok 69 - test-cluster-eaccess.js
---
duration_ms: 2.180
...
ok 70 - test-cluster-eaddrinuse.js
---
duration_ms: 1.443
...
ok 71 - test-cluster-fork-env.js
---
duration_ms: 1.441
...
ok 72 - test-cluster-http-pipe.js
---
duration_ms: 1.888
...
ok 73 - test-cluster-master-error.js
---
duration_ms: 2.568
...
ok 74 - test-cluster-master-kill.js
---
duration_ms: 3.473
...
ok 75 - test-cluster-message.js
---
duration_ms: 1.593
...
ok 76 - test-cluster-net-listen.js
---
duration_ms: 1.442
...
ok 77 - test-cluster-net-send.js
---
duration_ms: 1.567
...
ok 78 - test-cluster-rr-domain-listen.js
---
duration_ms: 1.544
...
ok 79 - test-cluster-send-deadlock.js
---
duration_ms: 1.580
...
ok 80 - test-cluster-send-handle-twice.js
---
duration_ms: 1.766
...
ok 81 - test-cluster-setup-master.js
---
duration_ms: 1.662
...
ok 82 - test-cluster-setup-master-argv.js
---
duration_ms: 0.876
...
ok 83 - test-cluster-setup-master-cumulative.js
---
duration_ms: 0.964
...
ok 84 - test-cluster-setup-master-emit.js
---
duration_ms: 0.832
...
ok 85 - test-cluster-setup-master-multiple.js
---
duration_ms: 1.342
...
ok 86 - test-cluster-shared-handle-bind-error.js
---
duration_ms: 1.632
...
not ok 87 - test-cluster-shared-handle-bind-privileged-port.js
#/data/tmp/test/parallel/test-cluster-shared-handle-bind-privileged-port.js:11
#if (process.getuid() === 0) {
# ^
#TypeError: undefined is not a function
# at Object.<anonymous> (/data/tmp/test/parallel/test-cluster-shared-handle-bind-privileged-port.js:11:13)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.837
...
ok 88 - test-cluster-uncaught-exception.js
---
duration_ms: 1.427
...
ok 89 - test-cluster-worker-constructor.js
---
duration_ms: 0.834
...
ok 90 - test-cluster-worker-death.js
---
duration_ms: 1.456
...
ok 91 - test-cluster-worker-destroy.js
---
duration_ms: 1.562
...
ok 92 - test-cluster-worker-disconnect.js
---
duration_ms: 1.635
...
ok 93 - test-cluster-worker-events.js
---
duration_ms: 1.446
...
ok 94 - test-cluster-worker-exit.js
---
duration_ms: 1.580
...
ok 95 - test-cluster-worker-forced-exit.js
---
duration_ms: 1.448
...
ok 96 - test-cluster-worker-init.js
---
duration_ms: 1.447
...
ok 97 - test-cluster-worker-isconnected.js
---
duration_ms: 1.461
...
ok 98 - test-cluster-worker-isdead.js
---
duration_ms: 1.443
...
ok 99 - test-cluster-worker-kill.js
---
duration_ms: 1.556
...
ok 100 - test-cluster-worker-no-exit.js
---
duration_ms: 2.563
...
ok 101 - test-common.js
---
duration_ms: 0.850
...
ok 102 - test-console.js
---
duration_ms: 0.871
...
ok 103 - test-console-instance.js
---
duration_ms: 0.838
...
ok 104 - test-console-not-call-toString.js
---
duration_ms: 0.843
...
ok 105 - test-crypto.js
---
duration_ms: 1.59
...
ok 106 - test-crypto-authenticated.js
---
duration_ms: 0.834
...
ok 107 - test-crypto-binary-default.js
---
duration_ms: 2.41
...
ok 108 - test-crypto-certificate.js
---
duration_ms: 0.850
...
ok 109 - test-crypto-cipher-decipher.js
---
duration_ms: 0.941
...
ok 110 - test-crypto-dh.js
---
duration_ms: 3.263
...
ok 111 - test-crypto-dh-odd-key.js
---
duration_ms: 0.869
...
ok 112 - test-crypto-domain.js
---
duration_ms: 0.840
...
ok 113 - test-crypto-domains.js
---
duration_ms: 0.869
...
ok 114 - test-crypto-ecb.js
---
duration_ms: 0.830
...
ok 115 - test-crypto-from-binary.js
---
duration_ms: 1.176
...
ok 116 - test-crypto-hash.js
---
duration_ms: 0.837
...
ok 117 - test-crypto-hash-stream-pipe.js
---
duration_ms: 0.845
...
ok 118 - test-crypto-hmac.js
---
duration_ms: 0.957
...
ok 119 - test-crypto-padding.js
---
duration_ms: 0.866
...
ok 120 - test-crypto-padding-aes256.js
---
duration_ms: 0.870
...
ok 121 - test-crypto-pbkdf2.js
---
duration_ms: 1.48
...
ok 122 - test-crypto-random.js
---
duration_ms: 0.868
...
ok 123 - test-crypto-rsa-dsa.js
---
duration_ms: 0.968
...
ok 124 - test-crypto-sign-verify.js
---
duration_ms: 0.833
...
ok 125 - test-crypto-stream.js
---
duration_ms: 0.968
...
ok 126 - test-crypto-verify-failure.js
---
duration_ms: 1.52
...
ok 127 - test-cwd-enoent.js
---
duration_ms: 1.343
...
ok 128 - test-cwd-enoent-repl.js
---
duration_ms: 1.680
...
ok 129 - test-debug-port-cluster.js
---
duration_ms: 3.163
...
ok 130 - test-debug-port-from-cmdline.js
---
duration_ms: 1.549
...
ok 131 - test-debug-signal-cluster.js
---
duration_ms: 3.348
...
ok 132 - test-delayed-require.js
---
duration_ms: 0.944
...
ok 133 - test-dgram-address.js
---
duration_ms: 0.879
...
ok 134 - test-dgram-bind.js
---
duration_ms: 0.844
...
ok 135 - test-dgram-bind-default-address.js
---
duration_ms: 0.976
...
ok 136 - test-dgram-bind-shared-ports.js
---
duration_ms: 2.163
...
ok 137 - test-dgram-bytes-length.js
---
duration_ms: 0.863
...
ok 138 - test-dgram-close.js
---
duration_ms: 0.866
...
ok 139 - test-dgram-close-is-not-callback.js
---
duration_ms: 0.837
...
ok 140 - test-dgram-empty-packet.js
---
duration_ms: 0.945
...
ok 141 - test-dgram-error-message-address.js
---
duration_ms: 0.835
...
ok 142 - test-dgram-exclusive-implicit-bind.js
---
duration_ms: 1.743
...
ok 143 - test-dgram-implicit-bind.js
---
duration_ms: 0.944
...
ok 144 - test-dgram-listen-after-bind.js
---
duration_ms: 0.882
...
ok 145 - test-dgram-msgsize.js
---
duration_ms: 0.879
...
ok 146 - test-dgram-multicast-setTTL.js
---
duration_ms: 0.955
...
ok 147 - test-dgram-oob-buffer.js
---
duration_ms: 0.836
...
ok 148 - test-dgram-pingpong.js
---
duration_ms: 2.374
...
ok 149 - test-dgram-ref.js
---
duration_ms: 0.863
...
ok 150 - test-dgram-regress-4496.js
---
duration_ms: 0.913
...
ok 151 - test-dgram-send-bad-arguments.js
---
duration_ms: 0.725
...
ok 152 - test-dgram-send-callback-buffer-length.js
---
duration_ms: 0.967
...
ok 153 - test-dgram-send-empty-buffer.js
---
duration_ms: 0.851
...
ok 154 - test-dgram-udp4.js
---
duration_ms: 0.864
...
ok 155 - test-dgram-unref.js
---
duration_ms: 0.843
...
ok 156 - test-dh-padding.js
---
duration_ms: 0.844
...
ok 157 - test-dns.js
---
duration_ms: 1.636
...
ok 158 - test-dns-cares-domains.js
---
duration_ms: 2.351
...
ok 159 - test-dns-lookup-cb-error.js
---
duration_ms: 0.853
...
ok 160 - test-dns-regress-6244.js
---
duration_ms: 1.137
...
ok 161 - test-dns-regress-7070.js
---
duration_ms: 0.729
...
ok 162 - test-domain.js
---
duration_ms: 0.976
...
ok 163 - test-domain-abort-on-uncaught.js
---
duration_ms: 0.963
...
ok 164 - test-domain-crypto.js
---
duration_ms: 0.762
...
ok 165 - test-domain-enter-exit.js
---
duration_ms: 0.743
...
ok 166 - test-domain-exit-dispose.js
---
duration_ms: 1.196
...
ok 167 - test-domain-exit-dispose-again.js
---
duration_ms: 1.63
...
ok 168 - test-domain-from-timer.js
---
duration_ms: 0.870
...
ok 169 - test-domain-http-server.js
---
duration_ms: 1.151
...
ok 170 - test-domain-implicit-fs.js
---
duration_ms: 0.989
...
ok 171 - test-domain-multi.js
---
duration_ms: 1.160
...
ok 172 - test-domain-nested.js
---
duration_ms: 0.743
...
ok 173 - test-domain-nested-throw.js
---
duration_ms: 2.176
...
ok 174 - test-domain-safe-exit.js
---
duration_ms: 0.772
...
ok 175 - test-domain-stack.js
---
duration_ms: 1.52
...
ok 176 - test-domain-timers.js
---
duration_ms: 0.853
...
ok 177 - test-error-reporting.js
---
duration_ms: 1.645
...
ok 178 - test-eval.js
---
duration_ms: 1.481
...
ok 179 - test-eval-require.js
---
duration_ms: 1.540
...
ok 180 - test-event-emitter-add-listeners.js
---
duration_ms: 0.868
...
ok 181 - test-event-emitter-check-listener-leaks.js
---
duration_ms: 0.841
...
ok 182 - test-event-emitter-get-max-listeners.js
---
duration_ms: 0.862
...
ok 183 - test-event-emitter-listeners.js
---
duration_ms: 1.20
...
ok 184 - test-event-emitter-listeners-side-effects.js
---
duration_ms: 0.828
...
ok 185 - test-event-emitter-max-listeners.js
---
duration_ms: 0.840
...
ok 186 - test-event-emitter-method-names.js
---
duration_ms: 0.876
...
ok 187 - test-event-emitter-modify-in-emit.js
---
duration_ms: 0.857
...
ok 188 - test-event-emitter-no-error-provided-to-error-event.js
---
duration_ms: 0.849
...
ok 189 - test-event-emitter-num-args.js
---
duration_ms: 0.964
...
ok 190 - test-event-emitter-once.js
---
duration_ms: 0.860
...
ok 191 - test-event-emitter-remove-all-listeners.js
---
duration_ms: 0.876
...
ok 192 - test-event-emitter-remove-listeners.js
---
duration_ms: 0.842
...
ok 193 - test-event-emitter-set-max-listeners-side-effects.js
---
duration_ms: 0.856
...
ok 194 - test-event-emitter-subclass.js
---
duration_ms: 0.858
...
ok 195 - test-exception-handler.js
---
duration_ms: 0.724
...
ok 196 - test-exception-handler2.js
---
duration_ms: 1.348
...
ok 197 - test-exec-max-buffer.js
---
duration_ms: 0.909
...
ok 198 - test-file-read-noexist.js
---
duration_ms: 0.845
...
ok 199 - test-file-write-stream.js
---
duration_ms: 0.933
...
ok 200 - test-file-write-stream2.js
---
duration_ms: 0.831
...
ok 201 - test-file-write-stream3.js
---
duration_ms: 0.866
...
not ok 202 - test-fs-access.js
#/data/tmp/test/parallel/test-fs-access.js:50
#if (process.platform !== 'win32' && process.getuid() === 0) {
# ^
#TypeError: undefined is not a function
# at Object.<anonymous> (/data/tmp/test/parallel/test-fs-access.js:50:45)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.862
...
ok 203 - test-fs-append-file.js
---
duration_ms: 0.850
...
ok 204 - test-fs-append-file-sync.js
---
duration_ms: 0.852
...
ok 205 - test-fs-chmod.js
---
duration_ms: 0.863
...
ok 206 - test-fs-empty-readStream.js
---
duration_ms: 0.984
...
ok 207 - test-fs-error-messages.js
---
duration_ms: 0.863
...
ok 208 - test-fs-exists.js
---
duration_ms: 0.867
...
ok 209 - test-fs-fsync.js
---
duration_ms: 0.978
...
ok 210 - test-fs-long-path.js
---
duration_ms: 0.877
...
ok 211 - test-fs-make-callback.js
---
duration_ms: 0.873
...
ok 212 - test-fs-mkdir.js
---
duration_ms: 0.865
...
ok 213 - test-fs-non-number-arguments-throw.js
---
duration_ms: 0.777
...
ok 214 - test-fs-null-bytes.js
---
duration_ms: 0.966
...
ok 215 - test-fs-open.js
---
duration_ms: 0.764
...
ok 216 - test-fs-open-flags.js
---
duration_ms: 0.856
...
ok 217 - test-fs-read.js
---
duration_ms: 0.971
...
ok 218 - test-fs-read-buffer.js
---
duration_ms: 0.739
...
ok 219 - test-fs-read-file-sync.js
---
duration_ms: 0.748
...
ok 220 - test-fs-read-file-sync-hostname.js
---
duration_ms: 0.739
...
ok 221 - test-fs-read-stream.js
---
duration_ms: 0.963
...
ok 222 - test-fs-read-stream-err.js
---
duration_ms: 0.845
...
ok 223 - test-fs-read-stream-fd.js
---
duration_ms: 0.870
...
ok 224 - test-fs-read-stream-fd-leak.js
---
duration_ms: 1.681
...
ok 225 - test-fs-read-stream-inherit.js
---
duration_ms: 0.955
...
ok 226 - test-fs-read-stream-resume.js
---
duration_ms: 0.963
...
ok 227 - test-fs-readfile-empty.js
---
duration_ms: 0.842
...
ok 228 - test-fs-readfile-error.js
---
duration_ms: 1.459
...
not ok 229 - test-fs-readfile-pipe.js
#{ [Error: Command failed: /system/bin/sh -c cat "/data/tmp/test/parallel/test-fs-readfile-pipe.js" | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfile-pipe.js" child
#/data/tmp/test/parallel/test-fs-readfile-pipe.js:18
# if (er) throw er;
# ^
#Error: ENOENT: no such file or directory, open '/dev/stdin'
# at Error (native)
#]
# killed: false,
# code: 1,
# signal: null,
# cmd: '/system/bin/sh -c cat "/data/tmp/test/parallel/test-fs-readfile-pipe.js" | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfile-pipe.js" child' }
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: it exits normally
# at /data/tmp/test/parallel/test-fs-readfile-pipe.js:30:3
# at ChildProcess.exithandler (child_process.js:695:5)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Socket.<anonymous> (child_process.js:1121:11)
# at emitOne (events.js:77:13)
# at Socket.emit (events.js:166:7)
# at Pipe._onclose (net.js:453:12)
---
duration_ms: 1.529
...
not ok 230 - test-fs-readfile-pipe-large.js
#{ [Error: Command failed: /system/bin/sh -c cat /data/tmp/test/tmp.0/readfile_pipe_large_test.txt | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfile-pipe-large.js" child
#/data/tmp/test/parallel/test-fs-readfile-pipe-large.js:21
# if (er) throw er;
# ^
#Error: ENOENT: no such file or directory, open '/dev/stdin'
# at Error (native)
#/system/bin/sh: cat: <stdout>: Broken pipe
#]
# killed: false,
# code: 1,
# signal: null,
# cmd: '/system/bin/sh -c cat /data/tmp/test/tmp.0/readfile_pipe_large_test.txt | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfile-pipe-large.js" child' }
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: it exits normally
# at /data/tmp/test/parallel/test-fs-readfile-pipe-large.js:33:3
# at ChildProcess.exithandler (child_process.js:695:5)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Socket.<anonymous> (child_process.js:1121:11)
# at emitOne (events.js:77:13)
# at Socket.emit (events.js:166:7)
# at Pipe._onclose (net.js:453:12)
---
duration_ms: 1.966
...
ok 231 - test-fs-readfile-unlink.js
---
duration_ms: 0.849
...
ok 232 - test-fs-readfile-zero-byte-liar.js
---
duration_ms: 0.883
...
not ok 233 - test-fs-readfilesync-pipe-large.js
#{ [Error: Command failed: /system/bin/sh -c cat /data/tmp/test/tmp.0/readfilesync_pipe_large_test.txt | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfilesync-pipe-large.js" child
#fs.js:547
# return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
# ^
#Error: ENOENT: no such file or directory, open '/dev/stdin'
# at Error (native)
# at Object.fs.openSync (fs.js:547:18)
# at Object.fs.readFileSync (fs.js:397:15)
# at Object.<anonymous> (/data/tmp/test/parallel/test-fs-readfilesync-pipe-large.js:20:27)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
#/system/bin/sh: cat: <stdout>: Broken pipe
#]
# killed: false,
# code: 1,
# signal: null,
# cmd: '/system/bin/sh -c cat /data/tmp/test/tmp.0/readfilesync_pipe_large_test.txt | "/data/tmp/out/Release/iojs" "/data/tmp/test/parallel/test-fs-readfilesync-pipe-large.js" child' }
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: it exits normally
# at /data/tmp/test/parallel/test-fs-readfilesync-pipe-large.js:30:3
# at ChildProcess.exithandler (child_process.js:695:5)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Socket.<anonymous> (child_process.js:1121:11)
# at emitOne (events.js:77:13)
# at Socket.emit (events.js:166:7)
# at Pipe._onclose (net.js:453:12)
---
duration_ms: 1.950
...
ok 234 - test-fs-realpath.js
---
duration_ms: 0.935
...
ok 235 - test-fs-sir-writes-alot.js
---
duration_ms: 1.553
...
ok 236 - test-fs-stat.js
---
duration_ms: 0.863
...
ok 237 - test-fs-stream-double-close.js
---
duration_ms: 0.872
...
ok 238 - test-fs-symlink.js
---
duration_ms: 0.859
...
ok 239 - test-fs-symlink-dir-junction.js
---
duration_ms: 0.839
...
ok 240 - test-fs-symlink-dir-junction-relative.js
---
duration_ms: 0.746
...
ok 241 - test-fs-sync-fd-leak.js
---
duration_ms: 0.739
...
ok 242 - test-fs-truncate.js
---
duration_ms: 0.849
...
ok 243 - test-fs-truncate-GH-6233.js
---
duration_ms: 0.855
...
ok 244 - test-fs-truncate-fd.js
---
duration_ms: 0.903
...
ok 245 - test-fs-utimes.js
---
duration_ms: 0.970
...
ok 246 - test-fs-write.js
---
duration_ms: 0.877
...
ok 247 - test-fs-write-buffer.js
---
duration_ms: 0.749
...
ok 248 - test-fs-write-file.js
---
duration_ms: 0.950
...
ok 249 - test-fs-write-file-buffer.js
---
duration_ms: 0.856
...
ok 250 - test-fs-write-file-sync.js
---
duration_ms: 0.761
...
ok 251 - test-fs-write-stream.js
---
duration_ms: 0.860
...
ok 252 - test-fs-write-stream-change-open.js
---
duration_ms: 0.863
...
ok 253 - test-fs-write-stream-end.js
---
duration_ms: 0.872
...
ok 254 - test-fs-write-stream-err.js
---
duration_ms: 0.957
...
ok 255 - test-fs-write-string-coerce.js
---
duration_ms: 0.735
...
ok 256 - test-fs-write-sync.js
---
duration_ms: 0.846
...
ok 257 - test-global.js
---
duration_ms: 0.864
...
ok 258 - test-handle-wrap-close-abort.js
---
duration_ms: 0.851
...
ok 259 - test-http.js
---
duration_ms: 1.155
...
ok 260 - test-http-1.0.js
---
duration_ms: 1.137
...
ok 261 - test-http-1.0-keep-alive.js
---
duration_ms: 1.234
...
not ok 262 - test-http-304.js
#/data/tmp/test/parallel/test-http-304.js:15
# if (err) throw err;
# ^
#Error: Command failed: /system/bin/sh -c curl -i http://127.0.0.1:12346/
#/system/bin/sh: curl: not found
#
# at ChildProcess.exithandler (child_process.js:688:12)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Socket.<anonymous> (child_process.js:1121:11)
# at emitOne (events.js:77:13)
# at Socket.emit (events.js:166:7)
# at Pipe._onclose (net.js:453:12)
#Server running at http://127.0.0.1:12346/
---
duration_ms: 1.37
...
ok 263 - test-http-abort-before-end.js
---
duration_ms: 0.950
...
ok 264 - test-http-abort-client.js
---
duration_ms: 1.81
...
ok 265 - test-http-abort-queued.js
---
duration_ms: 1.154
...
ok 266 - test-http-after-connect.js
---
duration_ms: 1.163
...
ok 267 - test-http-agent.js
---
duration_ms: 1.763
...
ok 268 - test-http-agent-destroyed-socket.js
---
duration_ms: 1.170
...
ok 269 - test-http-agent-false.js
---
duration_ms: 0.974
...
ok 270 - test-http-agent-keepalive.js
---
duration_ms: 1.366
...
ok 271 - test-http-agent-no-protocol.js
---
duration_ms: 1.63
...
ok 272 - test-http-agent-null.js
---
duration_ms: 1.77
...
ok 273 - test-http-allow-req-after-204-res.js
---
duration_ms: 1.47
...
ok 274 - test-http-automatic-headers.js
---
duration_ms: 1.54
...
ok 275 - test-http-bind-twice.js
---
duration_ms: 0.878
...
ok 276 - test-http-blank-header.js
---
duration_ms: 0.928
...
ok 277 - test-http-buffer-sanity.js
---
duration_ms: 1.340
...
ok 278 - test-http-byteswritten.js
---
duration_ms: 1.333
...
ok 279 - test-http-chunked.js
---
duration_ms: 0.945
...
ok 280 - test-http-chunked-304.js
---
duration_ms: 1.48
...
ok 281 - test-http-client-abort.js
---
duration_ms: 1.150
...
ok 282 - test-http-client-abort-event.js
---
duration_ms: 0.972
...
ok 283 - test-http-client-abort2.js
---
duration_ms: 1.50
...
ok 284 - test-http-client-agent.js
---
duration_ms: 1.44
...
ok 285 - test-http-client-default-headers-exist.js
---
duration_ms: 1.170
...
ok 286 - test-http-client-encoding.js
---
duration_ms: 1.48
...
ok 287 - test-http-client-get-url.js
---
duration_ms: 1.74
...
ok 288 - test-http-client-parse-error.js
---
duration_ms: 1.32
...
ok 289 - test-http-client-pipe-end.js
---
duration_ms: 0.956
...
ok 290 - test-http-client-race.js
---
duration_ms: 1.55
...
ok 291 - test-http-client-race-2.js
---
duration_ms: 1.530
...
ok 292 - test-http-client-read-in-error.js
---
duration_ms: 0.844
...
ok 293 - test-http-client-readable.js
---
duration_ms: 0.839
...
ok 294 - test-http-client-response-domain.js
---
duration_ms: 0.939
...
ok 295 - test-http-client-timeout.js
---
duration_ms: 0.964
...
ok 296 - test-http-client-timeout-agent.js
---
duration_ms: 1.464
...
ok 297 - test-http-client-timeout-event.js
---
duration_ms: 1.67
...
ok 298 - test-http-client-timeout-with-data.js
---
duration_ms: 1.59
...
ok 299 - test-http-client-unescaped-path.js
---
duration_ms: 0.889
...
ok 300 - test-http-client-upload.js
---
duration_ms: 1.73
...
ok 301 - test-http-client-upload-buf.js
---
duration_ms: 1.44
...
ok 302 - test-http-conn-reset.js
---
duration_ms: 1.59
...
ok 303 - test-http-connect.js
---
duration_ms: 1.64
...
ok 304 - test-http-content-length.js
---
duration_ms: 1.167
...
ok 305 - test-http-contentLength0.js
---
duration_ms: 1.72
...
ok 306 - test-http-createConnection.js
---
duration_ms: 1.78
...
not ok 307 - test-http-curl-chunk-problem.js
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: '8c206a1a87599f532ce68675536f0b1546900d7a' == 'da39a3ee5e6b4b0d3255bfef95601890afd80709'
# at /data/tmp/test/parallel/test-http-curl-chunk-problem.js:24:12
# at ChildProcess.exithandler (child_process.js:679:7)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Process.ChildProcess._handle.onexit (child_process.js:1025:5)
#dd command: dd if=/dev/zero of="/data/tmp/test/tmp.0/big" bs=1024 count=10240
#Server running at http://localhost:8080
#making curl request
---
duration_ms: 1.510
...
ok 308 - test-http-date-header.js
---
duration_ms: 1.41
...
ok 309 - test-http-default-encoding.js
---
duration_ms: 1.64
...
ok 310 - test-http-default-port.js
---
duration_ms: 1.254
...
ok 311 - test-http-destroyed-socket-write2.js
---
duration_ms: 1.104
...
ok 312 - test-http-dns-error.js
---
duration_ms: 1.147
...
ok 313 - test-http-end-throw-socket-handling.js
---
duration_ms: 1.180
...
ok 314 - test-http-eof-on-connect.js
---
duration_ms: 1.159
...
ok 315 - test-http-exceptions.js
---
duration_ms: 1.34
...
ok 316 - test-http-exit-delay.js
---
duration_ms: 1.841
...
ok 317 - test-http-expect-continue.js
---
duration_ms: 1.146
...
ok 318 - test-http-extra-response.js
---
duration_ms: 0.948
...
ok 319 - test-http-flush.js
---
duration_ms: 1.58
...
ok 320 - test-http-flush-headers.js
---
duration_ms: 1.50
...
not ok 321 - test-http-full-response.js
---
duration_ms: 0.848
...
ok 322 - test-http-get-pipeline-problem.js
---
duration_ms: 2.292
...
ok 323 - test-http-head-request.js
---
duration_ms: 1.157
...
ok 324 - test-http-head-response-has-no-body.js
---
duration_ms: 1.49
...
ok 325 - test-http-head-response-has-no-body-end.js
---
duration_ms: 1.77
...
ok 326 - test-http-header-read.js
---
duration_ms: 1.39
...
ok 327 - test-http-header-response-splitting.js
---
duration_ms: 1.153
...
ok 328 - test-http-hex-write.js
---
duration_ms: 1.166
...
ok 329 - test-http-host-headers.js
---
duration_ms: 1.148
...
ok 330 - test-http-incoming-pipelined-socket-destroy.js
---
duration_ms: 1.70
...
ok 331 - test-http-keep-alive.js
---
duration_ms: 1.61
...
ok 332 - test-http-keep-alive-close-on-header.js
---
duration_ms: 1.161
...
ok 333 - test-http-keepalive-client.js
---
duration_ms: 1.154
...
ok 334 - test-http-keepalive-maxsockets.js
---
duration_ms: 1.479
...
ok 335 - test-http-keepalive-request.js
---
duration_ms: 1.163
...
ok 336 - test-http-legacy.js
---
duration_ms: 1.149
...
ok 337 - test-http-localaddress.js
---
duration_ms: 1.84
...
ok 338 - test-http-localaddress-bind-error.js
---
duration_ms: 0.966
...
ok 339 - test-http-malformed-request.js
---
duration_ms: 1.78
...
ok 340 - test-http-many-ended-pipelines.js
---
duration_ms: 1.56
...
ok 341 - test-http-max-headers-count.js
---
duration_ms: 1.572
...
ok 342 - test-http-methods.js
---
duration_ms: 0.876
...
ok 343 - test-http-multi-line-headers.js
---
duration_ms: 0.943
...
ok 344 - test-http-mutable-headers.js
---
duration_ms: 1.146
...
ok 345 - test-http-no-content-length.js
---
duration_ms: 1.65
...
ok 346 - test-http-outgoing-finish.js
---
duration_ms: 1.59
...
ok 347 - test-http-parser.js
---
duration_ms: 1.169
...
ok 348 - test-http-parser-bad-ref.js
---
duration_ms: 1.82
...
ok 349 - test-http-parser-free.js
---
duration_ms: 1.364
...
ok 350 - test-http-pause.js
---
duration_ms: 1.343
...
ok 351 - test-http-pause-resume-one-end.js
---
duration_ms: 1.52
...
ok 352 - test-http-pipe-fs.js
---
duration_ms: 1.57
...
ok 353 - test-http-proxy.js
---
duration_ms: 1.176
...
ok 354 - test-http-raw-headers.js
---
duration_ms: 1.78
...
ok 355 - test-http-remove-header-stays-removed.js
---
duration_ms: 1.67
...
ok 356 - test-http-request-end.js
---
duration_ms: 1.41
...
ok 357 - test-http-request-end-twice.js
---
duration_ms: 1.46
...
ok 358 - test-http-request-methods.js
---
duration_ms: 1.78
...
ok 359 - test-http-res-write-after-end.js
---
duration_ms: 1.78
...
ok 360 - test-http-res-write-end-dont-take-array.js
---
duration_ms: 1.155
...
ok 361 - test-http-response-close.js
---
duration_ms: 1.35
...
ok 362 - test-http-response-no-headers.js
---
duration_ms: 1.29
...
ok 363 - test-http-response-readable.js
---
duration_ms: 0.930
...
ok 364 - test-http-response-status-message.js
---
duration_ms: 1.157
...
ok 365 - test-http-server.js
---
duration_ms: 1.43
...
ok 366 - test-http-server-multiheaders.js
---
duration_ms: 1.263
...
ok 367 - test-http-server-multiheaders2.js
---
duration_ms: 1.31
...
ok 368 - test-http-server-stale-close.js
---
duration_ms: 1.836
...
ok 369 - test-http-set-cookies.js
---
duration_ms: 1.364
...
ok 370 - test-http-set-timeout.js
---
duration_ms: 1.534
...
ok 371 - test-http-set-timeout-server.js
---
duration_ms: 1.332
...
ok 372 - test-http-set-trailers.js
---
duration_ms: 1.26
...
ok 373 - test-http-should-keep-alive.js
---
duration_ms: 1.26
...
ok 374 - test-http-status-code.js
---
duration_ms: 1.126
...
ok 375 - test-http-status-message.js
---
duration_ms: 0.939
...
ok 376 - test-http-timeout.js
---
duration_ms: 1.125
...
ok 377 - test-http-timeout-overflow.js
---
duration_ms: 1.39
...
ok 378 - test-http-unix-socket.js
---
duration_ms: 0.926
...
ok 379 - test-http-upgrade-agent.js
---
duration_ms: 0.934
...
ok 380 - test-http-upgrade-client.js
---
duration_ms: 1.122
...
ok 381 - test-http-upgrade-client2.js
---
duration_ms: 1.44
...
ok 382 - test-http-upgrade-server.js
---
duration_ms: 1.114
...
ok 383 - test-http-upgrade-server2.js
---
duration_ms: 0.977
...
ok 384 - test-http-upgrade-yes-please.js
---
duration_ms: 0.962
...
ok 385 - test-http-url.parse-auth.js
---
duration_ms: 1.62
...
ok 386 - test-http-url.parse-auth-with-header-in-request.js
---
duration_ms: 1.76
...
ok 387 - test-http-url.parse-basic.js
---
duration_ms: 1.56
...
ok 388 - test-http-url.parse-https.request.js
---
duration_ms: 1.136
...
ok 389 - test-http-url.parse-only-support-http-https-protocol.js
---
duration_ms: 0.849
...
ok 390 - test-http-url.parse-path.js
---
duration_ms: 1.53
...
ok 391 - test-http-url.parse-post.js
---
duration_ms: 1.38
...
ok 392 - test-http-url.parse-search.js
---
duration_ms: 1.62
...
ok 393 - test-http-wget.js
---
duration_ms: 1.62
...
ok 394 - test-http-write-callbacks.js
---
duration_ms: 1.147
...
ok 395 - test-http-write-empty-string.js
---
duration_ms: 1.52
...
ok 396 - test-http-write-head.js
---
duration_ms: 1.77
...
ok 397 - test-http-zero-length-write.js
---
duration_ms: 1.50
...
ok 398 - test-https-agent.js
---
duration_ms: 4.478
...
ok 399 - test-https-agent-servername.js
---
duration_ms: 1.166
...
ok 400 - test-https-byteswritten.js
---
duration_ms: 1.250
...
ok 401 - test-https-client-checkServerIdentity.js
---
duration_ms: 1.360
...
ok 402 - test-https-client-get-url.js
---
duration_ms: 1.171
...
ok 403 - test-https-client-reject.js
---
duration_ms: 1.360
...
ok 404 - test-https-client-resume.js
---
duration_ms: 1.262
...
ok 405 - test-https-connecting-to-http.js
---
duration_ms: 1.164
...
ok 406 - test-https-drain.js
---
duration_ms: 2.568
...
ok 407 - test-https-eof-for-eom.js
---
duration_ms: 1.359
...
ok 408 - test-https-foafssl.js
---
duration_ms: 1.351
...
ok 409 - test-https-host-headers.js
---
duration_ms: 1.459
...
ok 410 - test-https-localaddress.js
---
duration_ms: 1.252
...
ok 411 - test-https-localaddress-bind-error.js
---
duration_ms: 1.65
...
ok 412 - test-https-pfx.js
---
duration_ms: 1.258
...
ok 413 - test-https-req-split.js
---
duration_ms: 1.338
...
ok 414 - test-https-set-timeout-server.js
---
duration_ms: 1.737
...
not ok 415 - test-https-simple.js
#executing "curl --insecure https://127.0.0.1:12346/"
#/data/tmp/test/parallel/test-https-simple.js:33
# if (err) throw err;
# ^
#Error: Command failed: /system/bin/sh -c curl --insecure https://127.0.0.1:12346/
#/system/bin/sh: curl: not found
#
# at ChildProcess.exithandler (child_process.js:688:12)
# at emitTwo (events.js:87:13)
# at ChildProcess.emit (events.js:169:7)
# at maybeClose (child_process.js:956:16)
# at Socket.<anonymous> (child_process.js:1121:11)
# at emitOne (events.js:77:13)
# at Socket.emit (events.js:166:7)
# at Pipe._onclose (net.js:453:12)
---
duration_ms: 1.156
...
ok 416 - test-https-socket-options.js
---
duration_ms: 1.245
...
ok 417 - test-https-strict.js
---
duration_ms: 1.748
...
ok 418 - test-https-timeout.js
---
duration_ms: 1.143
...
ok 419 - test-https-timeout-server.js
---
duration_ms: 1.175
...
ok 420 - test-https-timeout-server-2.js
---
duration_ms: 1.162
...
ok 421 - test-https-truncate.js
---
duration_ms: 1.241
...
ok 422 - test-internal-modules.js
---
duration_ms: 0.873
...
ok 423 - test-internal-modules-expose.js
---
duration_ms: 0.756
...
ok 424 - test-intl.js
---
duration_ms: 0.754
...
ok 425 - test-listen-fd-cluster.js
---
duration_ms: 3.136
...
ok 426 - test-listen-fd-detached.js
---
duration_ms: 2.349
...
ok 427 - test-listen-fd-detached-inherit.js
---
duration_ms: 2.364
...
ok 428 - test-listen-fd-ebadf.js
---
duration_ms: 0.865
...
ok 429 - test-listen-fd-server.js
---
duration_ms: 2.359
...
ok 430 - test-memory-usage.js
---
duration_ms: 0.824
...
ok 431 - test-microtask-queue-integration.js
---
duration_ms: 0.840
...
ok 432 - test-microtask-queue-integration-domain.js
---
duration_ms: 0.875
...
ok 433 - test-microtask-queue-run.js
---
duration_ms: 0.840
...
ok 434 - test-microtask-queue-run-domain.js
---
duration_ms: 0.841
...
ok 435 - test-microtask-queue-run-immediate.js
---
duration_ms: 0.879
...
ok 436 - test-microtask-queue-run-immediate-domain.js
---
duration_ms: 0.864
...
ok 437 - test-module-globalpaths-nodepath.js
---
duration_ms: 0.845
...
ok 438 - test-module-loading-error.js
---
duration_ms: 0.866
...
ok 439 - test-module-nodemodulepaths.js
---
duration_ms: 0.746
...
ok 440 - test-net-after-close.js
---
duration_ms: 0.963
...
ok 441 - test-net-better-error-messages-listen.js
---
duration_ms: 0.857
...
ok 442 - test-net-better-error-messages-listen-path.js
---
duration_ms: 0.834
...
ok 443 - test-net-better-error-messages-path.js
---
duration_ms: 0.841
...
ok 444 - test-net-better-error-messages-port.js
---
duration_ms: 0.872
...
ok 445 - test-net-better-error-messages-port-hostname.js
---
duration_ms: 3.442
...
ok 446 - test-net-binary.js
---
duration_ms: 1.157
...
ok 447 - test-net-bind-twice.js
---
duration_ms: 0.842
...
ok 448 - test-net-buffersize.js
---
duration_ms: 0.938
...
ok 449 - test-net-bytes-stats.js
---
duration_ms: 0.939
...
ok 450 - test-net-can-reset-timeout.js
---
duration_ms: 1.73
...
ok 451 - test-net-connect-buffer.js
---
duration_ms: 0.948
...
ok 452 - test-net-connect-handle-econnrefused.js
---
duration_ms: 0.943
...
ok 453 - test-net-connect-immediate-finish.js
---
duration_ms: 3.66
...
ok 454 - test-net-connect-options.js
---
duration_ms: 0.872
...
ok 455 - test-net-connect-options-ipv6.js
---
duration_ms: 0.866
...
ok 456 - test-net-connect-paused-connection.js
---
duration_ms: 1.51
...
ok 457 - test-net-create-connection.js
---
duration_ms: 0.959
...
ok 458 - test-net-dns-error.js
---
duration_ms: 0.840
...
ok 459 - test-net-dns-lookup.js
---
duration_ms: 0.976
...
ok 460 - test-net-during-close.js
---
duration_ms: 0.862
...
ok 461 - test-net-eaddrinuse.js
---
duration_ms: 0.847
...
ok 462 - test-net-end-without-connect.js
---
duration_ms: 0.835
...
ok 463 - test-net-error-twice.js
---
duration_ms: 1.45
...
ok 464 - test-net-isip.js
---
duration_ms: 0.827
...
ok 465 - test-net-keepalive.js
---
duration_ms: 2.145
...
ok 466 - test-net-large-string.js
---
duration_ms: 0.953
...
ok 467 - test-net-listen-close-server.js
---
duration_ms: 0.878
...
ok 468 - test-net-listen-close-server-callback-is-not-function.js
---
duration_ms: 0.851
...
ok 469 - test-net-listen-error.js
---
duration_ms: 0.839
...
ok 470 - test-net-listen-fd0.js
---
duration_ms: 0.860
...
ok 471 - test-net-listen-port-option.js
---
duration_ms: 0.968
...
ok 472 - test-net-listen-shared-ports.js
---
duration_ms: 2.265
...
ok 473 - test-net-local-address-port.js
---
duration_ms: 0.993
...
ok 474 - test-net-localerror.js
---
duration_ms: 0.856
...
ok 475 - test-net-pause-resume-connecting.js
---
duration_ms: 0.958
...
ok 476 - test-net-pingpong.js
---
duration_ms: 5.799
...
not ok 477 - test-net-pipe-connect-errors.js
#/data/tmp/test/parallel/test-net-pipe-connect-errors.js:60
#if (process.platform !== 'win32' && process.getuid() !== 0) {
# ^
#TypeError: undefined is not a function
# at Object.<anonymous> (/data/tmp/test/parallel/test-net-pipe-connect-errors.js:60:45)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.867
...
ok 478 - test-net-reconnect.js
---
duration_ms: 1.949
...
ok 479 - test-net-reconnect-error.js
---
duration_ms: 1.83
...
ok 480 - test-net-remote-address-port.js
---
duration_ms: 0.843
...
ok 481 - test-net-server-close.js
---
duration_ms: 0.959
...
ok 482 - test-net-server-connections.js
---
duration_ms: 0.857
...
ok 483 - test-net-server-listen-remove-callback.js
---
duration_ms: 0.871
...
ok 484 - test-net-server-max-connections.js
---
duration_ms: 1.736
...
ok 485 - test-net-server-pause-on-connect.js
---
duration_ms: 3.974
...
ok 486 - test-net-server-try-ports.js
---
duration_ms: 0.939
...
ok 487 - test-net-server-unref.js
---
duration_ms: 0.861
...
ok 488 - test-net-server-unref-persistent.js
---
duration_ms: 0.862
...
ok 489 - test-net-settimeout.js
---
duration_ms: 1.43
...
ok 490 - test-net-socket-destroy-twice.js
---
duration_ms: 0.835
...
ok 491 - test-net-socket-timeout.js
---
duration_ms: 1.56
...
ok 492 - test-net-socket-timeout-unref.js
---
duration_ms: 0.856
...
ok 493 - test-net-stream.js
---
duration_ms: 0.943
...
ok 494 - test-net-write-after-close.js
---
duration_ms: 1.139
...
ok 495 - test-net-write-connect-write.js
---
duration_ms: 0.827
...
ok 496 - test-net-write-slow.js
---
duration_ms: 1.652
...
ok 497 - test-next-tick.js
---
duration_ms: 0.850
...
ok 498 - test-next-tick-doesnt-hang.js
---
duration_ms: 0.766
...
ok 499 - test-next-tick-domain.js
---
duration_ms: 0.877
...
ok 500 - test-next-tick-errors.js
---
duration_ms: 0.836
...
ok 501 - test-next-tick-intentional-starvation.js
---
duration_ms: 0.937
...
ok 502 - test-next-tick-ordering.js
---
duration_ms: 0.943
...
ok 503 - test-next-tick-ordering2.js
---
duration_ms: 0.854
...
ok 504 - test-os.js
---
duration_ms: 0.953
...
ok 505 - test-path.js
---
duration_ms: 0.868
...
ok 506 - test-path-makelong.js
---
duration_ms: 0.855
...
ok 507 - test-path-parse-format.js
---
duration_ms: 0.763
...
ok 508 - test-pipe-file-to-http.js
---
duration_ms: 3.148
...
ok 509 - test-pipe-return-val.js
---
duration_ms: 0.732
...
ok 510 - test-preload.js
---
duration_ms: 2.644
...
ok 511 - test-process-argv-0.js
---
duration_ms: 1.652
...
ok 512 - test-process-before-exit.js
---
duration_ms: 0.850
...
ok 513 - test-process-binding.js
---
duration_ms: 0.764
...
not ok 514 - test-process-config.js
#fs.js:547
# return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
# ^
#Error: ENOENT: no such file or directory, open '/data/tmp/config.gypi'
# at Error (native)
# at Object.fs.openSync (fs.js:547:18)
# at Object.fs.readFileSync (fs.js:397:15)
# at Object.<anonymous> (/data/tmp/test/parallel/test-process-config.js:13:17)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
---
duration_ms: 0.846
...
ok 515 - test-process-env.js
---
duration_ms: 1.439
...
ok 516 - test-process-exec-argv.js
---
duration_ms: 1.562
...
ok 517 - test-process-exit.js
---
duration_ms: 0.725
...
ok 518 - test-process-exit-code.js
---
duration_ms: 1.853
...
ok 519 - test-process-exit-from-before-exit.js
---
duration_ms: 0.857
...
ok 520 - test-process-exit-recursive.js
---
duration_ms: 0.744
...
ok 521 - test-process-getgroups.js
---
duration_ms: 0.866
...
ok 522 - test-process-hrtime.js
---
duration_ms: 0.727
...
ok 523 - test-process-kill-null.js
---
duration_ms: 0.837
...
ok 524 - test-process-kill-pid.js
---
duration_ms: 0.736
...
ok 525 - test-process-next-tick.js
---
duration_ms: 0.737
...
ok 526 - test-process-raw-debug.js
---
duration_ms: 1.464
...
ok 527 - test-process-remove-all-signal-listeners.js
---
duration_ms: 1.468
...
ok 528 - test-process-versions.js
---
duration_ms: 0.843
...
ok 529 - test-process-wrap.js
---
duration_ms: 0.862
...
ok 530 - test-promises-unhandled-rejections.js
---
duration_ms: 1.642
...
ok 531 - test-punycode.js
---
duration_ms: 0.860
...
ok 532 - test-querystring.js
---
duration_ms: 1.268
...
ok 533 - test-readdouble.js
---
duration_ms: 0.842
...
ok 534 - test-readfloat.js
---
duration_ms: 0.864
...
ok 535 - test-readint.js
---
duration_ms: 0.872
...
ok 536 - test-readline-interface.js
---
duration_ms: 0.946
...
ok 537 - test-readline-set-raw-mode.js
---
duration_ms: 0.835
...
ok 538 - test-readuint.js
---
duration_ms: 0.853
...
ok 539 - test-regress-GH-4256.js
---
duration_ms: 0.648
...
ok 540 - test-regress-GH-5927.js
---
duration_ms: 0.740
...
ok 541 - test-regress-GH-6235.js
---
duration_ms: 1.66
...
ok 542 - test-regress-GH-7511.js
---
duration_ms: 1.50
...
ok 543 - test-regress-GH-897.js
---
duration_ms: 0.730
...
ok 544 - test-regress-GH-io-1068.js
---
duration_ms: 0.744
...
ok 545 - test-regress-GH-node-9326.js
---
duration_ms: 1.379
...
ok 546 - test-regression-object-prototype.js
---
duration_ms: 0.767
...
ok 547 - test-repl.js
---
duration_ms: 1.664
...
ok 548 - test-repl-.save.load.js
---
duration_ms: 2.44
...
ok 549 - test-repl-autolibs.js
---
duration_ms: 0.924
...
ok 550 - test-repl-console.js
---
duration_ms: 0.930
...
ok 551 - test-repl-domain.js
---
duration_ms: 1.54
...
ok 552 - test-repl-end-emits-exit.js
---
duration_ms: 1.138
...
ok 553 - test-repl-harmony.js
---
duration_ms: 1.544
...
ok 554 - test-repl-options.js
---
duration_ms: 1.58
...
ok 555 - test-repl-require-cache.js
---
duration_ms: 1.35
...
ok 556 - test-repl-reset-event.js
---
duration_ms: 1.247
...
ok 557 - test-repl-setprompt.js
---
duration_ms: 1.765
...
ok 558 - test-repl-syntax-error-handling.js
---
duration_ms: 1.465
...
ok 559 - test-repl-tab-complete.js
---
duration_ms: 4.665
...
ok 560 - test-repl-timeout-throw.js
---
duration_ms: 2.44
...
ok 561 - test-require-cache.js
---
duration_ms: 0.850
...
ok 562 - test-require-exceptions.js
---
duration_ms: 0.870
...
ok 563 - test-require-extensions-main.js
---
duration_ms: 0.854
...
ok 564 - test-require-extensions-same-filename-as-dir.js
---
duration_ms: 0.833
...
ok 565 - test-require-extensions-same-filename-as-dir-trailing-slash.js
---
duration_ms: 0.835
...
ok 566 - test-require-json.js
---
duration_ms: 0.766
...
ok 567 - test-require-process.js
---
duration_ms: 0.764
...
ok 568 - test-require-resolve.js
---
duration_ms: 0.853
...
ok 569 - test-signal-handler.js
---
duration_ms: 0.840
...
ok 570 - test-signal-safety.js
---
duration_ms: 0.863
...
ok 571 - test-signal-unregister.js
---
duration_ms: 1.456
...
ok 572 - test-smalloc.js
---
duration_ms: 0.844
...
ok 573 - test-stdin-hang.js
---
duration_ms: 0.883
...
ok 574 - test-stdin-pause-resume.js
---
duration_ms: 0.858
...
ok 575 - test-stdin-pause-resume-sync.js
---
duration_ms: 0.768
...
ok 576 - test-stdin-resume-pause.js
---
duration_ms: 0.743
...
not ok 577 - test-stdio-closed.js
#events.js:141
# throw er; // Unhandled 'error' event
# ^
#Error: spawn /bin/sh ENOENT
# at exports._errnoException (util.js:749:11)
# at Process.ChildProcess._handle.onexit (child_process.js:990:32)
# at child_process.js:1082:20
# at process._tickCallback (node.js:340:13)
# at Function.Module.runMain (module.js:453:11)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 0.868
...
ok 578 - test-stdio-readable-writable.js
---
duration_ms: 0.752
...
ok 579 - test-stdout-close-unref.js
---
duration_ms: 0.845
...
ok 580 - test-stream-big-packet.js
---
duration_ms: 0.877
...
ok 581 - test-stream-big-push.js
---
duration_ms: 0.836
...
ok 582 - test-stream-duplex.js
---
duration_ms: 0.860
...
ok 583 - test-stream-end-paused.js
---
duration_ms: 0.871
...
ok 584 - test-stream-ispaused.js
---
duration_ms: 0.857
...
ok 585 - test-stream-pipe-after-end.js
---
duration_ms: 0.832
...
ok 586 - test-stream-pipe-cleanup.js
---
duration_ms: 0.883
...
ok 587 - test-stream-pipe-error-handling.js
---
duration_ms: 0.829
...
ok 588 - test-stream-pipe-event.js
---
duration_ms: 0.837
...
ok 589 - test-stream-push-order.js
---
duration_ms: 0.853
...
ok 590 - test-stream-push-strings.js
---
duration_ms: 0.958
...
ok 591 - test-stream-readable-constructor-set-methods.js
---
duration_ms: 0.863
...
ok 592 - test-stream-readable-event.js
---
duration_ms: 0.856
...
ok 593 - test-stream-readable-flow-recursion.js
---
duration_ms: 0.755
...
ok 594 - test-stream-transform-constructor-set-methods.js
---
duration_ms: 0.849
...
ok 595 - test-stream-transform-objectmode-falsey-value.js
---
duration_ms: 0.976
...
ok 596 - test-stream-transform-split-objectmode.js
---
duration_ms: 0.849
...
ok 597 - test-stream-unshift-empty-chunk.js
---
duration_ms: 0.835
...
ok 598 - test-stream-unshift-read-race.js
---
duration_ms: 0.863
...
ok 599 - test-stream-writable-change-default-encoding.js
---
duration_ms: 0.870
...
ok 600 - test-stream-writable-constructor-set-methods.js
---
duration_ms: 0.848
...
ok 601 - test-stream-writable-decoded-encoding.js
---
duration_ms: 0.866
...
ok 602 - test-stream-writev.js
---
duration_ms: 0.858
...
ok 603 - test-stream2-base64-single-char-read-end.js
---
duration_ms: 0.839
...
ok 604 - test-stream2-compatibility.js
---
duration_ms: 0.847
...
ok 605 - test-stream2-finish-pipe.js
---
duration_ms: 0.850
...
ok 606 - test-stream2-large-read-stall.js
---
duration_ms: 2.448
...
ok 607 - test-stream2-objects.js
---
duration_ms: 0.843
...
ok 608 - test-stream2-pipe-error-handling.js
---
duration_ms: 0.871
...
ok 609 - test-stream2-pipe-error-once-listener.js
---
duration_ms: 0.838
...
ok 610 - test-stream2-push.js
---
duration_ms: 0.859
...
ok 611 - test-stream2-read-sync-stack.js
---
duration_ms: 2.270
...
ok 612 - test-stream2-readable-empty-buffer-no-eof.js
---
duration_ms: 1.68
...
ok 613 - test-stream2-readable-from-list.js
---
duration_ms: 0.832
...
ok 614 - test-stream2-readable-legacy-drain.js
---
duration_ms: 0.940
...
ok 615 - test-stream2-readable-non-empty-end.js
---
duration_ms: 0.855
...
ok 616 - test-stream2-readable-wrap.js
---
duration_ms: 0.963
...
ok 617 - test-stream2-readable-wrap-empty.js
---
duration_ms: 0.858
...
ok 618 - test-stream2-set-encoding.js
---
duration_ms: 0.954
...
ok 619 - test-stream2-transform.js
---
duration_ms: 1.260
...
ok 620 - test-stream2-unpipe-drain.js
---
duration_ms: 0.843
...
ok 621 - test-stream2-unpipe-leak.js
---
duration_ms: 0.961
...
ok 622 - test-stream2-writable.js
---
duration_ms: 2.565
...
ok 623 - test-stream3-pause-then-read.js
---
duration_ms: 0.850
...
ok 624 - test-string-decoder.js
---
duration_ms: 1.247
...
ok 625 - test-string-decoder-end.js
---
duration_ms: 0.853
...
ok 626 - test-stringbytes-external.js
---
duration_ms: 14.901
...
ok 627 - test-sys.js
---
duration_ms: 0.869
...
ok 628 - test-tcp-wrap.js
---
duration_ms: 0.862
...
ok 629 - test-timer-close.js
---
duration_ms: 0.750
...
ok 630 - test-timers.js
---
duration_ms: 0.877
...
ok 631 - test-timers-args.js
---
duration_ms: 1.780
...
ok 632 - test-timers-first-fire.js
---
duration_ms: 0.855
...
ok 633 - test-timers-immediate.js
---
duration_ms: 0.860
...
ok 634 - test-timers-immediate-queue.js
---
duration_ms: 0.854
...
ok 635 - test-timers-linked-list.js
---
duration_ms: 0.854
...
ok 636 - test-timers-non-integer-delay.js
---
duration_ms: 0.877
...
ok 637 - test-timers-ordering.js
---
duration_ms: 0.861
...
ok 638 - test-timers-this.js
---
duration_ms: 0.737
...
ok 639 - test-timers-uncaught-exception.js
---
duration_ms: 0.963
...
ok 640 - test-timers-unref.js
---
duration_ms: 0.943
...
ok 641 - test-timers-unref-call.js
---
duration_ms: 0.756
...
ok 642 - test-timers-unref-leak.js
---
duration_ms: 0.852
...
ok 643 - test-timers-unrefd-interval-still-fires.js
---
duration_ms: 0.842
...
ok 644 - test-timers-zero-timeout.js
---
duration_ms: 0.867
...
ok 645 - test-tls-0-dns-altname.js
---
duration_ms: 1.43
...
ok 646 - test-tls-alert.js
---
duration_ms: 1.263
...
ok 647 - test-tls-cert-regression.js
---
duration_ms: 0.977
...
ok 648 - test-tls-check-server-identity.js
---
duration_ms: 0.954
...
ok 649 - test-tls-client-abort.js
---
duration_ms: 0.965
...
ok 650 - test-tls-client-abort2.js
---
duration_ms: 1.57
...
ok 651 - test-tls-client-default-ciphers.js
---
duration_ms: 0.868
...
ok 652 - test-tls-client-destroy-soon.js
---
duration_ms: 1.564
...
ok 653 - test-tls-client-reject.js
---
duration_ms: 1.269
...
ok 654 - test-tls-client-resume.js
---
duration_ms: 1.169
...
ok 655 - test-tls-client-verify.js
---
duration_ms: 1.458
...
ok 656 - test-tls-close-notify.js
---
duration_ms: 1.33
...
ok 657 - test-tls-connect.js
---
duration_ms: 1.51
...
ok 658 - test-tls-connect-given-socket.js
---
duration_ms: 1.144
...
ok 659 - test-tls-connect-pipe.js
---
duration_ms: 1.59
...
ok 660 - test-tls-connect-simple.js
---
duration_ms: 1.136
...
ok 661 - test-tls-delayed-attach.js
---
duration_ms: 1.368
...
ok 662 - test-tls-dhe.js
---
duration_ms: 1.840
...
ok 663 - test-tls-ecdh.js
---
duration_ms: 1.254
...
ok 664 - test-tls-ecdh-disable.js
---
duration_ms: 1.185
...
ok 665 - test-tls-econnreset.js
---
duration_ms: 1.66
...
ok 666 - test-tls-fast-writing.js
---
duration_ms: 1.164
...
ok 667 - test-tls-friendly-error-message.js
---
duration_ms: 1.181
...
ok 668 - test-tls-getcipher.js
---
duration_ms: 1.36
...
ok 669 - test-tls-handshake-nohang.js
---
duration_ms: 0.931
...
ok 670 - test-tls-hello-parser-failure.js
---
duration_ms: 1.155
...
ok 671 - test-tls-inception.js
---
duration_ms: 1.151
...
ok 672 - test-tls-interleave.js
---
duration_ms: 1.42
...
ok 673 - test-tls-invoke-queued.js
---
duration_ms: 1.43
...
ok 674 - test-tls-js-stream.js
---
duration_ms: 1.146
...
ok 675 - test-tls-junk-closes-server.js
---
duration_ms: 0.949
...
ok 676 - test-tls-key-mismatch.js
---
duration_ms: 0.942
...
ok 677 - test-tls-max-send-fragment.js
---
duration_ms: 1.172
...
ok 678 - test-tls-multi-key.js
---
duration_ms: 1.183
...
ok 679 - test-tls-no-cert-required.js
---
duration_ms: 0.952
...
ok 680 - test-tls-no-rsa-key.js
---
duration_ms: 1.42
...
ok 681 - test-tls-no-sslv23.js
---
duration_ms: 0.950
...
ok 682 - test-tls-no-sslv3.js
---
duration_ms: 1.154
...
ok 683 - test-tls-npn-server-client.js
---
duration_ms: 1.294
...
ok 684 - test-tls-ocsp-callback.js
---
duration_ms: 1.549
...
ok 685 - test-tls-on-empty-socket.js
---
duration_ms: 1.62
...
ok 686 - test-tls-over-http-tunnel.js
---
duration_ms: 1.255
...
ok 687 - test-tls-passphrase.js
---
duration_ms: 1.40
...
ok 688 - test-tls-pause.js
---
duration_ms: 3.139
...
ok 689 - test-tls-peer-certificate.js
---
duration_ms: 1.180
...
ok 690 - test-tls-peer-certificate-encoding.js
---
duration_ms: 1.177
...
ok 691 - test-tls-peer-certificate-multi-keys.js
---
duration_ms: 1.140
...
ok 692 - test-tls-request-timeout.js
---
duration_ms: 1.136
...
ok 693 - test-tls-securepair-server.js
---
duration_ms: 1.250
...
ok 694 - test-tls-server-verify.js
---
duration_ms: 3.762
...
ok 695 - test-tls-session-cache.js
---
duration_ms: 3.266
...
ok 696 - test-tls-set-ciphers.js
---
duration_ms: 1.169
...
ok 697 - test-tls-set-encoding.js
---
duration_ms: 1.38
...
ok 698 - test-tls-sni-option.js
---
duration_ms: 1.759
...
ok 699 - test-tls-sni-server-client.js
---
duration_ms: 1.262
...
ok 700 - test-tls-ticket.js
---
duration_ms: 1.159
...
ok 701 - test-tls-ticket-cluster.js
---
duration_ms: 2.863
...
ok 702 - test-tls-timeout-server.js
---
duration_ms: 1.49
...
ok 703 - test-tls-timeout-server-2.js
---
duration_ms: 1.156
...
ok 704 - test-tls-wrap-timeout.js
---
duration_ms: 1.465
...
ok 705 - test-tls-zero-clear-in.js
---
duration_ms: 1.46
...
ok 706 - test-tty-stdout-end.js
---
duration_ms: 0.740
...
ok 707 - test-tty-wrap.js
---
duration_ms: 0.738
...
ok 708 - test-umask.js
---
duration_ms: 0.854
...
ok 709 - test-url.js
---
duration_ms: 1.387
...
ok 710 - test-utf8-scripts.js
---
duration_ms: 0.845
...
ok 711 - test-util.js
---
duration_ms: 1.857
...
ok 712 - test-util-format.js
---
duration_ms: 0.866
...
ok 713 - test-util-inspect.js
---
duration_ms: 1.272
...
ok 714 - test-util-log.js
---
duration_ms: 0.745
...
ok 715 - test-v8-features.js
---
duration_ms: 1.951
...
ok 716 - test-v8-flags.js
---
duration_ms: 0.852
...
ok 717 - test-v8-stats.js
---
duration_ms: 0.737
...
ok 718 - test-vm-basic.js
---
duration_ms: 1.433
...
ok 719 - test-vm-context.js
---
duration_ms: 1.557
...
ok 720 - test-vm-context-async-script.js
---
duration_ms: 0.944
...
ok 721 - test-vm-context-property-forwarding.js
---
duration_ms: 0.974
...
ok 722 - test-vm-create-and-run-in-context.js
---
duration_ms: 1.142
...
ok 723 - test-vm-create-context-accessors.js
---
duration_ms: 0.964
...
ok 724 - test-vm-create-context-arg.js
---
duration_ms: 1.356
...
ok 725 - test-vm-create-context-circular-reference.js
---
duration_ms: 1.89
...
ok 726 - test-vm-cross-context.js
---
duration_ms: 0.957
...
ok 727 - test-vm-debug-context.js
---
duration_ms: 4.384
...
ok 728 - test-vm-function-declaration.js
---
duration_ms: 0.966
...
ok 729 - test-vm-global-define-property.js
---
duration_ms: 0.953
...
ok 730 - test-vm-global-identity.js
---
duration_ms: 1.54
...
ok 731 - test-vm-harmony-proxies.js
---
duration_ms: 1.168
...
ok 732 - test-vm-harmony-symbols.js
---
duration_ms: 1.239
...
ok 733 - test-vm-is-context.js
---
duration_ms: 1.230
...
ok 734 - test-vm-new-script-new-context.js
---
duration_ms: 2.446
...
ok 735 - test-vm-new-script-this-context.js
---
duration_ms: 0.850
...
ok 736 - test-vm-run-in-new-context.js
---
duration_ms: 2.163
...
ok 737 - test-vm-static-this.js
---
duration_ms: 0.869
...
ok 738 - test-vm-timeout.js
---
duration_ms: 1.61
...
ok 739 - test-writedouble.js
---
duration_ms: 0.862
...
ok 740 - test-writefloat.js
---
duration_ms: 0.753
...
ok 741 - test-writeint.js
---
duration_ms: 0.726
...
ok 742 - test-writeuint.js
---
duration_ms: 0.842
...
ok 743 - test-zlib.js
---
duration_ms: 1.268
...
ok 744 - test-zlib-close-after-write.js
---
duration_ms: 0.841
...
ok 745 - test-zlib-const.js
---
duration_ms: 0.847
...
ok 746 - test-zlib-convenience-methods.js
---
duration_ms: 0.975
...
ok 747 - test-zlib-dictionary.js
---
duration_ms: 0.954
...
ok 748 - test-zlib-dictionary-fail.js
---
duration_ms: 0.857
...
ok 749 - test-zlib-flush.js
---
duration_ms: 0.852
...
ok 750 - test-zlib-from-gzip.js
---
duration_ms: 0.941
...
ok 751 - test-zlib-from-string.js
---
duration_ms: 0.938
...
ok 752 - test-zlib-invalid-input.js
---
duration_ms: 0.975
...
ok 753 - test-zlib-params.js
---
duration_ms: 0.856
...
ok 754 - test-zlib-random-byte-pipes.js
---
duration_ms: 1.57
...
ok 755 - test-zlib-write-after-close.js
---
duration_ms: 0.829
...
ok 756 - test-zlib-write-after-flush.js
---
duration_ms: 0.838
...
ok 757 - test-zlib-zero-byte.js
---
duration_ms: 0.957
...
ok 758 - 2100bytes.js
---
duration_ms: 0.870
...
ok 759 - error_exit.js
---
duration_ms: 0.832
...
ok 760 - eval_messages.js
---
duration_ms: 6.245
...
ok 761 - hello_world.js
---
duration_ms: 0.839
...
ok 762 - max_tick_depth.js
---
duration_ms: 0.847
...
ok 763 - nexttick_throw.js
---
duration_ms: 0.838
...
ok 764 - stack_overflow.js
---
duration_ms: 0.724
...
ok 765 - stdin_messages.js
---
duration_ms: 6.873
...
ok 766 - throw_custom_error.js
---
duration_ms: 0.825
...
ok 767 - throw_in_line_with_tabs.js
---
duration_ms: 0.747
...
ok 768 - throw_non_error.js
---
duration_ms: 0.839
...
ok 769 - throw_null.js
---
duration_ms: 0.852
...
ok 770 - throw_undefined.js
---
duration_ms: 0.755
...
ok 771 - timeout_throw.js
---
duration_ms: 0.831
...
ok 772 - undefined_reference_in_new_context.js
---
duration_ms: 0.926
...
ok 773 - vm_display_runtime_error.js
---
duration_ms: 0.724
...
ok 774 - vm_display_syntax_error.js
---
duration_ms: 0.833
...
ok 775 - vm_dont_display_runtime_error.js
---
duration_ms: 0.863
...
ok 776 - vm_dont_display_syntax_error.js
---
duration_ms: 0.726
...
ok 777 - test-chdir.js
---
duration_ms: 0.739
...
ok 778 - test-child-process-emfile.js
---
duration_ms: 1.53
...
not ok 779 - test-child-process-execsync.js
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: false == true
# at Object.<anonymous> (/data/tmp/test/sequential/test-child-process-execsync.js:28:3)
# at Module._compile (module.js:410:26)
# at Object.Module._extensions..js (module.js:428:10)
# at Module.load (module.js:335:32)
# at Function.Module._load (module.js:290:12)
# at Function.Module.runMain (module.js:451:10)
# at startup (node.js:124:18)
# at node.js:868:3
---
duration_ms: 3.371
...
ok 780 - test-child-process-fork-getconnections.js
---
duration_ms: 1.551
...
ok 781 - test-cluster-listening-port.js
---
duration_ms: 1.444
...
ok 782 - test-debug-args.js
---
duration_ms: 0.758
...
ok 783 - test-deprecation-flags.js
---
duration_ms: 1.651
...
ok 784 - test-force-repl.js
---
duration_ms: 1.442
...
not ok 785 - test-fs-watch.js
#
#assert.js:88
# throw new assert.AssertionError({
# ^
#AssertionError: null == 'newfile.txt'
# at FSWatcher.<anonymous> (/data/tmp/test/sequential/test-fs-watch.js:95:18)
# at emitTwo (events.js:87:13)
# at FSWatcher.emit (events.js:169:7)
# at FSEvent.FSWatcher._handle.onchange (fs.js:1213:12)
---
duration_ms: 1.144
...
ok 786 - test-fs-watch-recursive.js
---
duration_ms: 0.744
...
ok 787 - test-http-pipeline-flood.js
---
duration_ms: 2.449
...
ok 788 - test-init.js
---
duration_ms: 1.635
...
ok 789 - test-memory-usage-emfile.js
---
duration_ms: 0.964
...
ok 790 - test-mkdir-rmdir.js
---
duration_ms: 0.875
...
ok 791 - test-module-loading.js
---
duration_ms: 1.70
...
ok 792 - test-net-GH-5504.js
---
duration_ms: 2.342
...
ok 793 - test-net-listen-exclusive-random-ports.js
---
duration_ms: 2.147
...
ok 794 - test-net-localport.js
---
duration_ms: 0.840
...
ok 795 - test-net-server-address.js
---
duration_ms: 0.841
...
ok 796 - test-net-server-bind.js
---
duration_ms: 0.955
...
ok 797 - test-next-tick-error-spin.js
---
duration_ms: 1.429
...
ok 798 - test-pipe.js
---
duration_ms: 2.445
...
ok 799 - test-pipe-address.js
---
duration_ms: 0.850
...
ok 800 - test-pipe-head.js
---
duration_ms: 1.472
...
ok 801 - test-pipe-stream.js
---
duration_ms: 0.956
...
ok 802 - test-pipe-unref.js
---
duration_ms: 0.838
...
ok 803 - test-pump-file2tcp.js
---
duration_ms: 0.975
...
ok 804 - test-pump-file2tcp-noexist.js
---
duration_ms: 1.60
...
ok 805 - test-readdir.js
---
duration_ms: 0.853
...
ok 806 - test-regress-GH-1531.js
---
duration_ms: 1.266
...
ok 807 - test-regress-GH-1697.js
---
duration_ms: 2.691
...
ok 808 - test-regress-GH-1726.js
---
duration_ms: 3.958
...
ok 809 - test-regress-GH-1899.js
---
duration_ms: 1.454
...
ok 810 - test-regress-GH-3542.js
---
duration_ms: 0.732
...
ok 811 - test-regress-GH-3739.js
---
duration_ms: 0.871
...
ok 812 - test-regress-GH-4015.js
---
duration_ms: 2.358
...
ok 813 - test-regress-GH-4027.js
---
duration_ms: 0.954
...
ok 814 - test-regress-GH-4948.js
---
duration_ms: 1.60
...
ok 815 - test-regress-GH-746.js
---
duration_ms: 0.874
...
ok 816 - test-regress-GH-784.js
---
duration_ms: 1.241
...
ok 817 - test-regress-GH-819.js
---
duration_ms: 3.546
...
ok 818 - test-regress-GH-877.js
---
duration_ms: 1.158
...
ok 819 - test-require-cache-without-stat.js
---
duration_ms: 0.974
...
ok 820 - test-setproctitle.js
---
duration_ms: 0.862
...
ok 821 - test-sigint-infinite-loop.js
---
duration_ms: 1.449
...
ok 822 - test-socket-write-after-fin.js
---
duration_ms: 0.854
...
ok 823 - test-socket-write-after-fin-error.js
---
duration_ms: 0.934
...
ok 824 - test-stdin-child-proc.js
---
duration_ms: 1.458
...
ok 825 - test-stdin-from-file.js
---
duration_ms: 1.440
...
ok 826 - test-stdin-pipe-resume.js
---
duration_ms: 1.437
...
ok 827 - test-stdin-script-child.js
---
duration_ms: 1.434
...
ok 828 - test-stdout-cannot-be-closed-child-process-pipe.js
---
duration_ms: 1.435
...
ok 829 - test-stdout-close-catch.js
---
duration_ms: 1.672
...
ok 830 - test-stdout-stderr-reading.js
---
duration_ms: 1.573
...
ok 831 - test-stdout-to-file.js
---
duration_ms: 2.656
...
ok 832 - test-stream2-fs.js
---
duration_ms: 0.862
...
ok 833 - test-stream2-httpclient-response-end.js
---
duration_ms: 1.74
...
ok 834 - test-stream2-stderr-sync.js
---
duration_ms: 1.950
...
ok 835 - test-sync-fileread.js
---
duration_ms: 0.751
...
ok 836 - test-tcp-wrap-connect.js
---
duration_ms: 0.841
...
ok 837 - test-tcp-wrap-listen.js
---
duration_ms: 0.955
...
ok 838 - test-tls-honorcipherorder.js
---
duration_ms: 1.274
...
ok 839 - test-util-debug.js
---
duration_ms: 2.186
...
ok 840 - test-vm-syntax-error-stderr.js
---
duration_ms: 1.455
...
ok 841 - test-vm-timeout-rethrow.js
---
duration_ms: 1.571
...
ok 842 - test-zerolengthbufferbug.js
---
duration_ms: 1.56
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment