From 93634e29042993b465815842c23035c906bc7da0 Mon Sep 17 00:00:00 2001 From: Xu Meng Date: Mon, 16 Dec 2019 15:35:21 +0100 Subject: [PATCH] test: skip uv_(get|set)_process_title on IBMi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit uv_(get|set)_process_title is not implemented on IBMi. PR-URL: https://github.com/libuv/libuv/pull/2574 Reviewed-By: Ben Noordhuis Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Santiago Gimeno Reviewed-By: Saúl Ibarra Corretgé --- test/test-process-title-threadsafe.c | 2 +- test/test-process-title.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test-process-title-threadsafe.c b/test/test-process-title-threadsafe.c index f35053bd..2f12b74e 100644 --- a/test/test-process-title-threadsafe.c +++ b/test/test-process-title-threadsafe.c @@ -72,7 +72,7 @@ TEST_IMPL(process_title_threadsafe) { int i; #if defined(__sun) || defined(__CYGWIN__) || defined(__MSYS__) || \ - defined(__MVS__) + defined(__MVS__) || defined(__PASE__) RETURN_SKIP("uv_(get|set)_process_title is not implemented."); #endif diff --git a/test/test-process-title.c b/test/test-process-title.c index efd48142..b49f3bc4 100644 --- a/test/test-process-title.c +++ b/test/test-process-title.c @@ -60,7 +60,8 @@ static void uv_get_process_title_edge_cases(void) { TEST_IMPL(process_title) { -#if defined(__sun) || defined(__CYGWIN__) || defined(__MSYS__) +#if defined(__sun) || defined(__CYGWIN__) || defined(__MSYS__) || \ + defined(__PASE__) RETURN_SKIP("uv_(get|set)_process_title is not implemented."); #endif