Commit 50ded4b2 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

rsaenh/tests: Make the tests pass in Windows <= NT4.

parent 43871921
...@@ -450,6 +450,11 @@ static void test_hashes(void) ...@@ -450,6 +450,11 @@ static void test_hashes(void)
ok(!result && GetLastError() == NTE_BAD_FLAGS, "%08x\n", GetLastError()); ok(!result && GetLastError() == NTE_BAD_FLAGS, "%08x\n", GetLastError());
result = CryptHashData(hHash, pbData, sizeof(pbData), CRYPT_USERDATA); result = CryptHashData(hHash, pbData, sizeof(pbData), CRYPT_USERDATA);
if (!result && GetLastError() == NTE_BAD_FLAGS) /* <= NT4 */
{
ok(broken(1), "Failed to support CRYPT_USERDATA flag\n");
result = CryptHashData(hHash, pbData, sizeof(pbData), 0);
}
ok(result, "%08x\n", GetLastError()); ok(result, "%08x\n", GetLastError());
len = sizeof(DWORD); len = sizeof(DWORD);
...@@ -477,6 +482,11 @@ static void test_hashes(void) ...@@ -477,6 +482,11 @@ static void test_hashes(void)
ok(!result && GetLastError() == NTE_BAD_FLAGS, "%08x\n", GetLastError()); ok(!result && GetLastError() == NTE_BAD_FLAGS, "%08x\n", GetLastError());
result = CryptHashData(hHash, pbData, sizeof(pbData), CRYPT_USERDATA); result = CryptHashData(hHash, pbData, sizeof(pbData), CRYPT_USERDATA);
if (!result && GetLastError() == NTE_BAD_FLAGS) /* <= NT4 */
{
ok(broken(1), "Failed to support CRYPT_USERDATA flag\n");
result = CryptHashData(hHash, pbData, sizeof(pbData), 0);
}
ok(result, "%08x\n", GetLastError()); ok(result, "%08x\n", GetLastError());
len = 16; len = 16;
...@@ -526,6 +536,11 @@ static void test_hashes(void) ...@@ -526,6 +536,11 @@ static void test_hashes(void)
ok(result, "%08x\n", GetLastError()); ok(result, "%08x\n", GetLastError());
result = CryptHashData(hHash, pbData, 5, CRYPT_USERDATA); result = CryptHashData(hHash, pbData, 5, CRYPT_USERDATA);
if (!result && GetLastError() == NTE_BAD_FLAGS) /* <= NT4 */
{
ok(broken(1), "Failed to support CRYPT_USERDATA flag\n");
result = CryptHashData(hHash, pbData, 5, 0);
}
ok(result, "%08x\n", GetLastError()); ok(result, "%08x\n", GetLastError());
if(pCryptDuplicateHash) { if(pCryptDuplicateHash) {
......
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