schedsvc/tests: Recognize Windows 10's RPC version.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2016-02-18 03:14:22 +01:00 committed by Alexandre Julliard
parent e5c120893d
commit d03c5b483c

View file

@ -114,7 +114,8 @@ START_TEST(rpcapi)
version = 0;
hr = SchRpcHighestVersion(&version);
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
ok(version == 0x10002 /* vista */ || version == 0x10003 /* win7 */ || version == 0x10004 /* win8 */,
ok(version == 0x10002 /* vista */ || version == 0x10003 /* win7 */ ||
version == 0x10004 /* win8 */ || version == 0x10005 /* win10 */,
"wrong version %#x\n", version);
SetUnhandledExceptionFilter(old_exception_filter);