]> granicus.if.org Git - curl/commitdiff
tests: fix the authretry tests
authorMichael Kaufmann <mail@michael-kaufmann.ch>
Sat, 11 Mar 2017 19:06:56 +0000 (20:06 +0100)
committerMichael Kaufmann <mail@michael-kaufmann.ch>
Sat, 11 Mar 2017 19:21:56 +0000 (20:21 +0100)
Do not call curl_easy_reset() between the requests, because the
auth state must be preserved for these tests.

Follow-up to 0afbcfd

tests/libtest/libauthretry.c

index 139dab974523c36d6c867ae821a5d9febae1dca1..e9dc0508bfd5ef8f11a2579ea1a354c23700a614 100644 (file)
@@ -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: