From dea34654988df0a07d402f8508be5d6157c37527 Mon Sep 17 00:00:00 2001 From: Abdirahim Musse <33973272+abmusse@users.noreply.github.com> Date: Mon, 3 Mar 2025 01:59:34 -0600 Subject: [PATCH] test: skip uv-thread-name on IBM i --- test/addons/uv-thread-name/test.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/addons/uv-thread-name/test.js b/test/addons/uv-thread-name/test.js index f4ddefb55291f7..e5e2b949502d37 100644 --- a/test/addons/uv-thread-name/test.js +++ b/test/addons/uv-thread-name/test.js @@ -1,8 +1,9 @@ 'use strict'; const common = require('../../common'); -if (common.isAIX) { - common.skip('AIX is not supported by libuv'); +if (common.isAIX || common.isIBMi) { + // see: https://github.com/libuv/libuv/pull/4599#issuecomment-2498376606 + common.skip('AIX, IBM i do not support get/set thread name'); } const assert = require('node:assert');