You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: reclassify dgram as planned, flag mislabeled UNSUPPORTED-MODULE entries
dgram (UDP) is planned for implementation, not out of scope.
https, http2, tls, net, readline, diagnostics_channel, async_hooks
are bridged/deferred modules incorrectly globbed as unsupported-module.
~822 of 1226 UNSUPPORTED-MODULE tests are actually fixable.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
| Blocked by classified fixes (FIX-01 through FIX-33) | 1,570 |
11
+
| In UNSUPPORTED-MODULE (many mislabeled, see breakdown below) | 1,226 |
12
+
| Other (TEST-INFRA, UNSUPPORTED-API, HANGS, OTHER, VACUOUS) | 337 |
13
+
|**Total**|**3,532**|
13
14
14
-
*36 "vacuous" tests self-skip and exit 0 without testing anything — listed under VACUOUS below, counted in unfixable/out-of-scope.*
15
+
*Of the 1,226 UNSUPPORTED-MODULE tests, ~822 are from modules that are actually bridged/deferred (https, http2, tls, net, dgram, readline, diagnostics_channel, async_hooks) and should be reclassified as implementation-gap. Only ~404 are truly architecture-limited (cluster, worker_threads, vm, inspector, repl, domain, snapshot, quic, shadow realm).*
16
+
17
+
*36 "vacuous" tests self-skip and exit 0 without testing anything — listed under VACUOUS below.*
15
18
16
19
## Cross-Validation Testing Policy
17
20
@@ -66,7 +69,9 @@ When implementing polyfill/bridge features where both sides of a test go through
*FIX-17 (Sign/Verify), FIX-27 (compose), FIX-34 (vm), FIX-35 (worker_threads), FIX-36 (async_hooks), FIX-37 (net/tls), FIX-38 (readline), FIX-39 (diagnostics_channel) have 0 individually-classified tests — their tests are absorbed into UNSUPPORTED-MODULE glob patterns.*
72
+
*FIX-17 (Sign/Verify), FIX-27 (compose), FIX-34 (vm), FIX-35 (worker_threads), FIX-36 (async_hooks), FIX-37 (net/tls), FIX-38 (readline), FIX-39 (diagnostics_channel) have 0 individually-classified tests — their tests are currently absorbed into UNSUPPORTED-MODULE glob patterns. Many of these modules are actually bridged or deferred (not truly unsupported) and their glob categorizations in expectations.json need to be updated. See the UNSUPPORTED-MODULE section below for the breakdown of what's truly unsupported vs mislabeled.*
73
+
74
+
*dgram (UDP) is planned for implementation — ~76 tests currently in UNSUPPORTED-MODULE should move to a dgram FIX category once the UDP bridge is built.*
70
75
71
76
---
72
77
@@ -1989,9 +1994,28 @@ No unhandled Promise rejection capture. Fix: hook into V8's Promise rejection ha
1989
1994
1990
1995
### UNSUPPORTED-MODULE: entire module not implemented (1226 tests)
1991
1996
1992
-
**Resolution: ~50-100 tests rescuable with net bridge**
1993
-
1994
-
Breakdown: cluster (~83, never feasible), http2 (~256, feasible if net+tls bridged), tls (~192, feasible with OpenSSL bindings), net (~149, high effort TCP bridge), domain (~50, deprecated, never implement), inspector (~60, never feasible), repl (~75, never feasible), worker (~132, architecture-limited), readline (~19, partially feasible), dgram (~76, low priority), debugger (~25, never feasible), compiler (~15, never feasible), snapshot (~27, never feasible), shadow realm (~10, never feasible), quic (~4, never feasible), eslint (~24, not runtime), permission (~31, not runtime), trace (~35, not runtime), runner (~40, not runtime). Implementing net+tls bridge would rescue a subset of http2/https/tls tests.
1997
+
**Resolution: Many modules here are mislabeled — they are bridged or deferred, not truly unsupported.**
1998
+
1999
+
Modules that ARE bridged/deferred and should be reclassified to implementation-gap:
2000
+
-**https** (~62 tests) — IS a BRIDGE_MODULE. Glob is stale.
2001
+
-**http2** (~256 tests) — IS a BRIDGE_MODULE. Glob is stale.
2002
+
-**tls** (~192 tests) — DEFERRED_CORE_MODULE with stubs. Some tests only check API shape.
0 commit comments