Commit 29cd7982 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Handle another possible status when…

ntdll/tests: Handle another possible status when SystemProcessorFeaturesInformation is not supported.
parent 7db54316
......@@ -377,7 +377,7 @@ static void test_query_cpu(void)
len = 0xdeadbeef;
status = pNtQuerySystemInformation( SystemProcessorFeaturesInformation, &features, sizeof(features), &len );
if (status != STATUS_NOT_SUPPORTED)
if (status != STATUS_NOT_SUPPORTED && status != STATUS_INVALID_INFO_CLASS)
{
ok( !status, "SystemProcessorFeaturesInformation failed %lx\n", status );
ok( len == sizeof(features), "wrong len %lu\n", len );
......
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