Skip to content

Commit 5cea85f

Browse files
test: fix mobile tests for 12.16.3
1 parent 31f2335 commit 5cea85f

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

test/message/message.status

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ async_error_eval_cjs: SKIP
2626
async_error_eval_esm: SKIP
2727
eval_messages: SKIP
2828
stdin_messages: SKIP
29+
#
30+
# Tests that require printing '\0' to stderr, which logcat won't show
31+
#
32+
error_with_nul: SKIP
2933

3034
[$system==ios]
3135
#
@@ -39,3 +43,7 @@ stdin_messages: SKIP
3943
# Tests that require WebAssembly, not supported in JIT-less V8
4044
#
4145
v8_warning: SKIP
46+
#
47+
# Tests that require printing '\0' to stderr, which Xcode doesn't support
48+
#
49+
error_with_nul: SKIP

test/parallel/parallel.status

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ test-listen-fd-cluster: SKIP
109109
test-listen-fd-detached: SKIP
110110
test-listen-fd-detached-inherit: SKIP
111111
test-listen-fd-server: SKIP
112+
test-macos-signed-deps: SKIP
112113
test-math-random: SKIP
113114
test-module-loading-globalpaths: SKIP
114115
test-module-main-extension-lookup: SKIP
@@ -147,6 +148,7 @@ test-process-really-exit: SKIP
147148
test-process-redirect-warnings: SKIP
148149
test-process-redirect-warnings-env: SKIP
149150
test-process-remove-all-signal-listeners: SKIP
151+
test-process-title: SKIP
150152
test-process-wrap: SKIP
151153
test-promise-reject-callback-exception: SKIP
152154
test-promise-unhandled-flag: SKIP
@@ -194,8 +196,10 @@ test-tls-enable-trace: SKIP
194196
test-tls-enable-trace-cli: SKIP
195197
test-tls-env-bad-extra-ca: SKIP
196198
test-tls-env-extra-ca: SKIP
199+
test-tls-env-extra-ca-file-load: SKIP
197200
test-tls-env-extra-ca-no-crypto: SKIP
198201
test-tls-handshake-exception: SKIP
202+
test-tls-root-certificates: SKIP
199203
test-tls-ticket-cluster: SKIP
200204
test-trace-events-all: SKIP
201205
test-trace-events-binding: SKIP
@@ -224,7 +228,9 @@ test-vm-sigint: SKIP
224228
test-vm-sigint-existing-handler: SKIP
225229
test-vm-syntax-error-message: SKIP
226230
test-vm-syntax-error-stderr: SKIP
231+
test-worker-init-failure: SKIP
227232
test-worker-message-type-unknown: SKIP
233+
test-worker-on-process-exit: SKIP
228234
test-worker-process-env: SKIP
229235
#
230236
# Tests that try to access the 'test' parent folder, currently not supported on mobile
@@ -408,6 +414,7 @@ test-listen-fd-cluster: SKIP
408414
test-listen-fd-detached: SKIP
409415
test-listen-fd-detached-inherit: SKIP
410416
test-listen-fd-server: SKIP
417+
test-macos-signed-deps: SKIP
411418
test-math-random: SKIP
412419
test-module-loading-globalpaths: SKIP
413420
test-module-main-extension-lookup: SKIP
@@ -446,6 +453,7 @@ test-process-really-exit: SKIP
446453
test-process-redirect-warnings: SKIP
447454
test-process-redirect-warnings-env: SKIP
448455
test-process-remove-all-signal-listeners: SKIP
456+
test-process-title: SKIP
449457
test-process-wrap: SKIP
450458
test-promise-reject-callback-exception: SKIP
451459
test-promise-unhandled-flag: SKIP
@@ -493,8 +501,10 @@ test-tls-enable-trace: SKIP
493501
test-tls-enable-trace-cli: SKIP
494502
test-tls-env-bad-extra-ca: SKIP
495503
test-tls-env-extra-ca: SKIP
504+
test-tls-env-extra-ca-file-load: SKIP
496505
test-tls-env-extra-ca-no-crypto: SKIP
497506
test-tls-handshake-exception: SKIP
507+
test-tls-root-certificates: SKIP
498508
test-tls-ticket-cluster: SKIP
499509
test-trace-events-all: SKIP
500510
test-trace-events-binding: SKIP
@@ -523,7 +533,9 @@ test-vm-sigint: SKIP
523533
test-vm-sigint-existing-handler: SKIP
524534
test-vm-syntax-error-message: SKIP
525535
test-vm-syntax-error-stderr: SKIP
536+
test-worker-init-failure: SKIP
526537
test-worker-message-type-unknown: SKIP
538+
test-worker-on-process-exit: SKIP
527539
test-worker-process-env: SKIP
528540
#
529541
# Tests that try to access the 'test' parent folder, currently not supported on mobile

test/parallel/test-fs-readdir-stack-overflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
require('../common');
3+
const common = require('../common');
44

55
const assert = require('assert');
66
const fs = require('fs');

tools/mobile-test/android/node-android-proxy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ parseLogcat() {
3030
RESULT=$(parseLogcat)
3131

3232
# Echo the raw stdout and stderr
33-
adb $TARGET shell 'logcat -d -b main -v raw -s TestNode:I -s nodejs | sed -E ''s/^RESULT:[A-Z]*//'' '
33+
adb $TARGET shell 'logcat -d -b main -v raw -s TestNode:E -s TestNode:I -s nodejs | sed -E ''s/^RESULT:[A-Z]*//'' '
3434

3535
if [ $RESULT -eq 1 ]; then
3636
exit $RESULT

0 commit comments

Comments
 (0)