Commit ffb44032 authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32/tests: Fixed the handle test for Win9x.

parent 50d6b7fb
......@@ -1526,7 +1526,9 @@ static void test_Handles(void)
BOOL ret;
DWORD code;
ok( handle == (HANDLE)~(ULONG_PTR)0, "invalid current process handle %p\n", handle );
ok( handle == (HANDLE)~(ULONG_PTR)0 ||
handle == (HANDLE)(ULONG_PTR)0x7fffffff /* win9x */,
"invalid current process handle %p\n", handle );
ret = GetExitCodeProcess( handle, &code );
ok( ret, "GetExitCodeProcess failed err %u\n", GetLastError() );
#ifdef _WIN64
......
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