summaryrefslogtreecommitdiff
path: root/tests/libtest/libauthretry.c
diff options
context:
space:
mode:
authorMichael Kaufmann <mail@michael-kaufmann.ch>2017-03-11 20:06:56 +0100
committerMichael Kaufmann <mail@michael-kaufmann.ch>2017-03-11 20:21:56 +0100
commit8d105209933e27293cfc4f224614cea57ddd8372 (patch)
tree811f6701647d1b4ec52538001db62f5667d01112 /tests/libtest/libauthretry.c
parente84a863dc37f81bca066838a76e1b461c3cabeaf (diff)
downloadgnurl-8d105209933e27293cfc4f224614cea57ddd8372.tar.gz
gnurl-8d105209933e27293cfc4f224614cea57ddd8372.tar.bz2
gnurl-8d105209933e27293cfc4f224614cea57ddd8372.zip
tests: fix the authretry tests
Do not call curl_easy_reset() between the requests, because the auth state must be preserved for these tests. Follow-up to 0afbcfd
Diffstat (limited to 'tests/libtest/libauthretry.c')
-rw-r--r--tests/libtest/libauthretry.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/libtest/libauthretry.c b/tests/libtest/libauthretry.c
index 139dab974..e9dc0508b 100644
--- a/tests/libtest/libauthretry.c
+++ b/tests/libtest/libauthretry.c
@@ -111,12 +111,10 @@ int test(char *url)
res = send_wrong_password(curl, url, 100, main_auth_scheme);
if(res != CURLE_OK)
goto test_cleanup;
- curl_easy_reset(curl);
res = send_right_password(curl, url, 200, fallback_auth_scheme);
if(res != CURLE_OK)
goto test_cleanup;
- curl_easy_reset(curl);
curl_easy_cleanup(curl);
@@ -131,17 +129,14 @@ int test(char *url)
res = send_wrong_password(curl, url, 300, main_auth_scheme);
if(res != CURLE_OK)
goto test_cleanup;
- curl_easy_reset(curl);
res = send_wrong_password(curl, url, 400, fallback_auth_scheme);
if(res != CURLE_OK)
goto test_cleanup;
- curl_easy_reset(curl);
res = send_right_password(curl, url, 500, fallback_auth_scheme);
if(res != CURLE_OK)
goto test_cleanup;
- curl_easy_reset(curl);
test_cleanup: