test: skip thread_name_threadpool on AIX/IBMi (#4731)
uv_thread_getname is not available on aix and ibm i Same issue as thread_name test Refs: https://github.com/libuv/libuv/pull/4599#issuecomment-2498376606
This commit is contained in:
parent
545ecf515f
commit
92eacd19a1
@ -178,6 +178,10 @@ static void after_work_cb(uv_work_t* req, int status) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_IMPL(thread_name_threadpool) {
|
TEST_IMPL(thread_name_threadpool) {
|
||||||
|
|
||||||
|
#if defined(_AIX) || defined(__PASE__)
|
||||||
|
RETURN_SKIP("API not available on this platform");
|
||||||
|
#endif
|
||||||
uv_work_t req;
|
uv_work_t req;
|
||||||
loop = uv_default_loop();
|
loop = uv_default_loop();
|
||||||
// Just to make sure all workers will be executed
|
// Just to make sure all workers will be executed
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user