Commit f5b8eb49 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

user32/tests: Add additional test for window station name.

parent dfb750b9
...@@ -114,6 +114,8 @@ static void test_handles(void) ...@@ -114,6 +114,8 @@ static void test_handles(void)
DWORD id, flags, le; DWORD id, flags, le;
ATOM atom; ATOM atom;
char buffer[20]; char buffer[20];
DWORD size;
BOOL ret;
/* win stations */ /* win stations */
...@@ -215,6 +217,12 @@ static void test_handles(void) ...@@ -215,6 +217,12 @@ static void test_handles(void)
w2 = CreateWindowStationA( "", 0, WINSTA_ALL_ACCESS, NULL ); w2 = CreateWindowStationA( "", 0, WINSTA_ALL_ACCESS, NULL );
ok( w2 != 0, "create station failed err %u\n", GetLastError() ); ok( w2 != 0, "create station failed err %u\n", GetLastError() );
memset( buffer, 0, sizeof(buffer) );
ret = GetUserObjectInformationA( w2, UOI_NAME, buffer, sizeof(buffer), &size );
ok( ret, "GetUserObjectInformationA failed with error %u\n", GetLastError() );
todo_wine ok( !memcmp(buffer, "Service-0x0-", 12), "unexpected window station name '%s'\n", buffer );
todo_wine ok( buffer[strlen(buffer) - 1] == '$', "unexpected window station name '%s'\n", buffer );
SetLastError( 0xdeadbeef ); SetLastError( 0xdeadbeef );
w3 = OpenWindowStationA( "", TRUE, WINSTA_ALL_ACCESS ); w3 = OpenWindowStationA( "", TRUE, WINSTA_ALL_ACCESS );
todo_wine todo_wine
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment