Skip to content

Commit 02799cb

Browse files
committedOct 29, 2020
test: fix mobile tests for 12.19.0
1 parent fb24d25 commit 02799cb

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed
 

‎test/message/message.status

+10
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,25 @@ prefix message
2424
#
2525
async_error_eval_cjs: SKIP
2626
async_error_eval_esm: SKIP
27+
esm_loader_not_found_cjs_hint_bare: SKIP
2728
eval_messages: SKIP
2829
stdin_messages: SKIP
2930
#
3031
# Tests that require printing '\0' to stderr, which logcat won't show
3132
#
3233
error_with_nul: SKIP
34+
#
35+
# Tests that try to access the 'test' parent folder, currently not supported on mobile
36+
#
37+
esm_loader_not_found_cjs_hint_relative: SKIP
3338

3439
[$system==ios]
3540
#
3641
# Tests that require child process that currently is not supported on mobile
3742
#
3843
async_error_eval_cjs: SKIP
3944
async_error_eval_esm: SKIP
45+
esm_loader_not_found_cjs_hint_bare: SKIP
4046
eval_messages: SKIP
4147
stdin_messages: SKIP
4248
#
@@ -47,3 +53,7 @@ v8_warning: SKIP
4753
# Tests that require printing '\0' to stderr, which Xcode doesn't support
4854
#
4955
error_with_nul: SKIP
56+
#
57+
# Tests that try to access the 'test' parent folder, currently not supported on mobile
58+
#
59+
esm_loader_not_found_cjs_hint_relative: SKIP

‎test/parallel/parallel.status

+8
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ test-policy-integrity-flag: SKIP
152152
test-policy-parse-integrity: SKIP
153153
test-preload: SKIP
154154
test-preload-print-process-argv: SKIP
155+
test-preload-self-referential: SKIP
155156
test-process-argv-0: SKIP
156157
test-process-env: SKIP
157158
test-process-exec-argv: SKIP
@@ -168,6 +169,7 @@ test-process-redirect-warnings: SKIP
168169
test-process-redirect-warnings-env: SKIP
169170
test-process-remove-all-signal-listeners: SKIP
170171
test-process-title: SKIP
172+
test-process-uncaught-exception-monitor: SKIP
171173
test-process-wrap: SKIP
172174
test-promise-reject-callback-exception: SKIP
173175
test-promise-unhandled-flag: SKIP
@@ -177,6 +179,7 @@ test-repl-import-referrer: SKIP
177179
test-repl-inspect-defaults: SKIP
178180
test-repl-require-after-write: SKIP
179181
test-repl-require-context: SKIP
182+
test-repl-require-self-referential: SKIP
180183
test-repl-setprompt: SKIP
181184
test-repl-sigint: SKIP
182185
test-repl-sigint-nested-eval: SKIP
@@ -239,6 +242,7 @@ test-trace-events-worker-metadata: SKIP
239242
test-trace-exit: SKIP
240243
test-tracing-no-crash: SKIP
241244
test-unhandled-exception-rethrow-error: SKIP
245+
test-unicode-node-options: SKIP
242246
test-util-callbackify: SKIP
243247
test-v8-untrusted-code-mitigations: SKIP
244248
test-vm-api-handles-getter-errors: SKIP
@@ -457,6 +461,7 @@ test-policy-integrity-flag: SKIP
457461
test-policy-parse-integrity: SKIP
458462
test-preload: SKIP
459463
test-preload-print-process-argv: SKIP
464+
test-preload-self-referential: SKIP
460465
test-process-argv-0: SKIP
461466
test-process-env: SKIP
462467
test-process-exec-argv: SKIP
@@ -473,6 +478,7 @@ test-process-redirect-warnings: SKIP
473478
test-process-redirect-warnings-env: SKIP
474479
test-process-remove-all-signal-listeners: SKIP
475480
test-process-title: SKIP
481+
test-process-uncaught-exception-monitor: SKIP
476482
test-process-wrap: SKIP
477483
test-promise-reject-callback-exception: SKIP
478484
test-promise-unhandled-flag: SKIP
@@ -482,6 +488,7 @@ test-repl-import-referrer: SKIP
482488
test-repl-inspect-defaults: SKIP
483489
test-repl-require-after-write: SKIP
484490
test-repl-require-context: SKIP
491+
test-repl-require-self-referential: SKIP
485492
test-repl-setprompt: SKIP
486493
test-repl-sigint: SKIP
487494
test-repl-sigint-nested-eval: SKIP
@@ -544,6 +551,7 @@ test-trace-events-worker-metadata: SKIP
544551
test-trace-exit: SKIP
545552
test-tracing-no-crash: SKIP
546553
test-unhandled-exception-rethrow-error: SKIP
554+
test-unicode-node-options: SKIP
547555
test-util-callbackify: SKIP
548556
test-v8-untrusted-code-mitigations: SKIP
549557
test-vm-api-handles-getter-errors: SKIP

‎test/parallel/test-dgram-membership.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ const setup = dgram.createSocket.bind(dgram, { type: 'udp4', reuseAddr: true });
108108
const socket = setup();
109109
assert.throws(() => {
110110
socket.addSourceSpecificMembership(multicastAddress, '0');
111-
}, {
111+
}, common.isAndroid ? {
112+
code: 'ENOSYS',
113+
message: 'addSourceSpecificMembership ENOSYS'
114+
} : {
112115
code: 'EINVAL',
113116
message: 'addSourceSpecificMembership EINVAL'
114117
});
@@ -146,7 +149,10 @@ const setup = dgram.createSocket.bind(dgram, { type: 'udp4', reuseAddr: true });
146149
const socket = setup();
147150
assert.throws(() => {
148151
socket.dropSourceSpecificMembership(multicastAddress, '0');
149-
}, {
152+
}, common.isAndroid ? {
153+
code: 'ENOSYS',
154+
message: 'dropSourceSpecificMembership ENOSYS'
155+
} : {
150156
code: 'EINVAL',
151157
message: 'dropSourceSpecificMembership EINVAL'
152158
});

‎test/sequential/sequential.status

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ test-net-GH-5504: SKIP
5252
test-net-listen-shared-ports: SKIP
5353
test-net-response-size: SKIP
5454
test-next-tick-error-spin: SKIP
55+
test-process-title: SKIP
5556
test-process-warnings: SKIP
5657
test-repl-timeout-throw: SKIP
5758
test-set-http-max-http-headers: SKIP
@@ -90,6 +91,7 @@ test-net-GH-5504: SKIP
9091
test-net-listen-shared-ports: SKIP
9192
test-net-response-size: SKIP
9293
test-next-tick-error-spin: SKIP
94+
test-process-title: SKIP
9395
test-process-warnings: SKIP
9496
test-repl-timeout-throw: SKIP
9597
test-set-http-max-http-headers: SKIP

0 commit comments

Comments
 (0)
Failed to load comments.