Commit 1ff8e7dd authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32/tests: Fix the thread test on NT4.

parent 220a2c2c
......@@ -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]);
......
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