Skip to content

Commit f8dde3a

Browse files
abmusseaduh95
authored andcommittedMar 9, 2025
test: skip uv-thread-name on IBM i
PR-URL: #57299 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent fbe464e commit f8dde3a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎test/addons/uv-thread-name/test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
'use strict';
22
const common = require('../../common');
33

4-
if (common.isAIX) {
5-
common.skip('AIX is not supported by libuv');
4+
if (common.isAIX || common.isIBMi) {
5+
// see: https://github.com/libuv/libuv/pull/4599#issuecomment-2498376606
6+
common.skip('AIX, IBM i do not support get/set thread name');
67
}
78

89
const assert = require('node:assert');

0 commit comments

Comments
 (0)
Please sign in to comment.