File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,13 @@ const {
5959} = internalBinding ( 'messaging' ) ;
6060
6161const {
62- clearTimeout,
63- setTimeout,
64- } = require ( 'timers' ) ;
62+ clearTimeout : internalClearTimeout ,
63+ setTimeout : internalSetTimeout ,
64+ } = require ( 'internal/timers' ) ;
65+
66+ const clearTimeout = globalThis . clearTimeout ;
67+ const setTimeout = globalThis . setTimeout ;
68+
6569const assert = require ( 'internal/assert' ) ;
6670
6771const {
Original file line number Diff line number Diff line change @@ -20,3 +20,13 @@ openssl-providers/test-no-legacy-provider-option: SKIP
2020zlib-binding/test: SKIP
2121# https://github.com/nodejs/node/issues/34410
2222register-signal-handler/test: PASS,FLAKY
23+
24+ [$system==aix]
25+ # https://github.com/nodejs/node/issues/60494
26+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max: PASS,FLAKY
27+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-hex: PASS,FLAKY
28+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-utf8: PASS,FLAKY
29+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-base64: PASS,FLAKY
30+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-2: PASS,FLAKY
31+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-ascii: PASS,FLAKY
32+ stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-binary: PASS,FLAKY
You can’t perform that action at this time.
0 commit comments