1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test, sunos: disable process_title test

Disable unit test failing due to missing implementation
of uv_(set|get)_process_title for Sun OS (SmartOS).

Based on discussion with @tjfontaine, such implementation is difficult
if possible at all and it won't be done anytime soon. Thus there is
no point in keeping the failing test around.
This commit is contained in:
Miroslav Bajtoš 2013-04-17 00:33:25 +02:00 committed by Ben Noordhuis
parent 55c150abfc
commit 0564ee4a66

View File

@ -42,8 +42,12 @@ static void set_title(const char* title) {
TEST_IMPL(process_title) {
#if defined(__sun)
RETURN_SKIP("uv_(get|set)_process_title is not implemented.");
#else
/* Check for format string vulnerabilities. */
set_title("%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s");
set_title("new title");
return 0;
#endif
}