kernel32/tests: Fix the thread test on NT4.

This commit is contained in:
Alexandre Julliard 2008-11-10 11:09:18 +01:00
parent 220a2c2c0b
commit 1ff8e7dd41
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ static void test_TLS(void)
}
ret = WaitForMultipleObjects(2, threads, TRUE, 60000);
ok(ret == WAIT_OBJECT_0, "WaitForMultipleObjects failed\n");
ok(ret == WAIT_OBJECT_0 || ret == WAIT_OBJECT_0+1 /* nt4 */, "WaitForMultipleObjects failed %u\n",ret);
for (i = 0; i < 2; ++i)
CloseHandle(threads[i]);