Skip to content

Commit 8342183

Browse files
authoredMar 5, 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 755e460 commit 8342183

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)