test: skip uv_(get|set)_process_title on IBMi

uv_(get|set)_process_title is not implemented on IBMi.

PR-URL: https://github.com/libuv/libuv/pull/2574
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
This commit is contained in:
Xu Meng 2019-12-16 15:35:21 +01:00 committed by Ben Noordhuis
parent 5b12c313e1
commit 93634e2904
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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