Commit 28216851 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

advapi32/tests: Allow an additional result on newer Win10.

parent 93323bcf
......@@ -5858,7 +5858,8 @@ static void test_process_access(void)
case GENERIC_WRITE:
ok(access == map[i].mapped ||
access == (map[i].mapped | PROCESS_TERMINATE) /* before Vista */ ||
access == (map[i].mapped | PROCESS_SET_LIMITED_INFORMATION) /* win8 */,
access == (map[i].mapped | PROCESS_SET_LIMITED_INFORMATION) /* win8 */ ||
access == (map[i].mapped | PROCESS_QUERY_LIMITED_INFORMATION | PROCESS_SET_LIMITED_INFORMATION) /* Win10 Anniversary Update */,
"%d: expected %#x, got %#x\n", i, map[i].mapped, access);
break;
case GENERIC_EXECUTE:
......
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