Signed-off-by: André Hentschel nerv@dawncrow.de --- dlls/wininet/tests/http.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c index ace8512399..9ec4902cdc 100644 --- a/dlls/wininet/tests/http.c +++ b/dlls/wininet/tests/http.c @@ -5569,6 +5569,12 @@ static void test_cert_struct(HINTERNET req, const cert_struct_test_t *test)
size = sizeof(info); res = InternetQueryOptionA(req, INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT, &info, &size); + if (!res) + { + win_skip("Querying INTERNET_OPTION_SECURITY_CERTIFICATE_STRUCT failed, skipping tests\n"); + return; + } + ok(res, "InternetQueryOption failed: %u\n", GetLastError()); ok(size == sizeof(info), "size = %u\n", size);
Hi,
While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=42197
Your paranoid android.
=== w2003std (32 bit Windows report) ===
wininet: http.c:6021: Test failed: HttpSendRequest failed: 12045 http.c:6822: Test failed: HttpSendRequest failed with error 12045
Am 18.09.2018 um 20:29 schrieb Marvin:
Hi,
While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=42197
Your paranoid android.
=== w2003std (32 bit Windows report) ===
wininet: http.c:6021: Test failed: HttpSendRequest failed: 12045 http.c:6822: Test failed: HttpSendRequest failed with error 12045
preexisting: https://test.winehq.org/data/tests/wininet:http.html