Commit 3dedb0fd authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

crypt32: Fix a test that fails in Vista.

parent 3c53fcc4
......@@ -361,7 +361,9 @@ static void test_CryptInstallOssGlobal(void)
for(i=0;i<30;i++)
{
ret = pI_CryptInstallOssGlobal(rand(),rand(),rand());
ok((9+i) == ret,"Expected %d, got %d\n",(9+i),ret);
ok((9+i) == ret ||
ret == 0, /* Vista */
"Expected %d or 0, got %d\n",(9+i),ret);
}
}
......
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