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

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
André Hentschel 2018-03-29 19:28:46 +02:00 committed by Alexandre Julliard
parent d28628e920
commit b164e4dc8d
1 changed files with 2 additions and 1 deletions

View File

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