Commit fe05a730 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

secur32/tests: Skip test on failure to acquire cred_handle.

parent cc34ca4c
......@@ -625,6 +625,7 @@ static void test_communication(void)
status = pAcquireCredentialsHandleA(NULL, (SEC_CHAR *)UNISP_NAME, SECPKG_CRED_OUTBOUND, NULL,
&cred, NULL, NULL, &cred_handle, NULL);
ok(status == SEC_E_OK, "AcquireCredentialsHandleA failed: %08x\n", status);
if (status != SEC_E_OK) return;
/* Initialize the connection */
init_buffers(&buffers[0], 4, buf_size);
......
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