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 <info@bnoordhuis.nl>
This commit is contained in:
Imran Iqbal 2015-11-11 16:31:15 -05:00 committed by Ben Noordhuis
parent 77eda8d90b
commit baf700acdb

View File

@ -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. */