From baf700acdb58c1294b1d7a2403a3fde694ce50f0 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 11 Nov 2015 16:31:15 -0500 Subject: [PATCH] test: skip process_title for AIX uv_(get|set)_process_title is not implemented for AIX. See unix/aix.c PR-URL: https://github.com/libuv/libuv/pull/616 Reviewed-By: Ben Noordhuis --- test/test-process-title.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-process-title.c b/test/test-process-title.c index 29be2074..42ade441 100644 --- a/test/test-process-title.c +++ b/test/test-process-title.c @@ -42,7 +42,7 @@ static void set_title(const char* title) { TEST_IMPL(process_title) { -#if defined(__sun) +#if defined(__sun) || defined(_AIX) RETURN_SKIP("uv_(get|set)_process_title is not implemented."); #else /* Check for format string vulnerabilities. */