Commit 1833dc0b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mmdevapi/tests: WoW64 processes can read the properties from the registry.

Since Windows 10 2004 so consider the old limitation to be broken.
parent 5d3c0cf0
......@@ -183,7 +183,9 @@ static void test_setvalue_on_wow64(IPropertyStore *store)
/* should NOT find the key in 32-bit view */
ret = RegOpenKeyExW(HKEY_LOCAL_MACHINE, software_renderW, 0, KEY_READ, &root);
ok(ret == ERROR_FILE_NOT_FOUND, "Wrong error when opening mmdevices Render key: %lu\n", ret);
todo_wine
ok(ret == 0 || broken(ret == ERROR_FILE_NOT_FOUND /* win10 < 2004 */),
"Wrong error when opening mmdevices Render key: %lu\n", ret);
}
START_TEST(propstore)
......
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