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:
parent
5b12c313e1
commit
93634e2904
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user