Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-07 | tests: Added --libcurl for IMAP test case | Steve Holme | |
2014-08-15 | http: fix the Content-Range: parser | Daniel Stenberg | |
... to handle "*/[total]". Also, removed the strange hack that made CURLOPT_FAILONERROR on a 416 response after a *RESUME_FROM return CURLE_OK. Reported-by: Dimitrios Siganos Bug: http://curl.haxx.se/mail/lib-2014-06/0221.html | |||
2014-08-07 | runtests.pl: Pad test case numbers with up to three zeroes | Fabian Keil | |
Test case numbers with four digits have been available for a while now. | |||
2014-07-26 | tests: Fix a couple of incomplete response lines | Fabian Keil | |
2014-07-26 | runtests.pl: Remove filteroff() which hasn't been used since 2001 | Fabian Keil | |
2014-07-26 | runtests.pl: Don't expect $TESTDIR/DISABLED to exist | Fabian Keil | |
If a non-standard $TESTDIR is used the file may not be necessary. Previously a "missing" file resulted in the warning: readline() on closed filehandle D at ./runtests.pl line 4940. | |||
2014-07-26 | getpart.pm: Fix a comment typo | Fabian Keil | |
2014-07-25 | Curl_base64url_encode: unit-tested in 1302 | Daniel Stenberg | |
2014-07-24 | test1013.pl: GSS-Negotiate doesn't exist as a feature anymore | Daniel Stenberg | |
2014-07-24 | libtest: fixed duplicated line in Makefile | Sergey Nikulov | |
Bug: https://github.com/bagder/curl/pull/105 | |||
2014-07-23 | test1013.pl: remove SPNEGO/GSS-API tweaks | Daniel Stenberg | |
No longer necessary after Michael Osipov's rework | |||
2014-07-17 | testcurl.pl: log the value of --runtestopts in the test header | Dan Fandrich | |
2014-07-16 | test506: verify aa6884845168 | Daniel Stenberg | |
After the fixed cookie lock deadlock, this test now passes and it detects double-locking and double-unlocking of mutexes. | |||
2014-07-15 | test320: strip off the actual negotiated cipher width | Dan Fandrich | |
It's irrelevant to the test, and will change depending on which SSL library is being used by libcurl. | |||
2014-07-12 | tests: added globbing keyword to URL globbing tests | Dan Fandrich | |
2014-07-12 | Fixed some "statement not reached" warnings | Dan Fandrich | |
2014-07-12 | gnutls: explicitly added SRP to the priority string | Dan Fandrich | |
This seems to have become necessary for SRP support to work starting with GnuTLS ver. 2.99.0. Since support for SRP was added to GnuTLS before the function that takes this priority string, there should be no issue with backward compatibility. | |||
2014-07-11 | tests: adjust for capitalization differences in newer gnutls-serv | Dan Fandrich | |
2014-07-11 | test320/1/2/4: fix the port number substitution variables | Dan Fandrich | |
These tests have been broken since commit 1958fe57 in Oct. 2011 | |||
2014-07-11 | tests: document more test identifiers and variables | Dan Fandrich | |
2014-06-18 | tests: Use CURLOPT_READDATA instead of the obsolete CURLOPT_INFILE | Dan Fandrich | |
2014-06-15 | sasl: Added back qop argument mistakenly removed in e95ca7ce | Dan Fandrich | |
This caused segfaults on tests 823 869 907. | |||
2014-06-15 | test1398: Added test to Makefile.am | Dan Fandrich | |
2014-06-11 | NTLM: set a fake entropy for debug builds with CURL_ENTROPY set | Daniel Stenberg | |
Curl_rand() will return a dummy and repatable random value for this case. Makes it possible to write test cases that verify output. Also, fake timestamp with CURL_FORCETIME set. Only when built debug enabled of course. Curl_ssl_random() was not used anymore so it has been removed. Curl_rand() is enough. create_digest_md5_message: generate base64 instead of hex string curl_sasl: also fix memory leaks in some OOM situations | |||
2014-06-11 | tests: Disabled NTLM tests for non-debug builds | Steve Holme | |
Added required "debug" feature, missed in commit 1c9aaa0bac, as NTLMv2 calls Curl_rand() which can only be fixed to a specific entropy in debug builds. | |||
2014-06-11 | Curl_rand: Use a fake entropy for debug builds when CURL_ENTROPY set | Steve Holme | |
2014-06-01 | tests: Fixed up DIGEST-MD5 tests following commit eefeb73af4 | Steve Holme | |
2014-05-29 | tests: Fix portability issue with the tftpd server and timeouts | Dan Fandrich | |
gcc spit out warning: variable 'x' might be clobbered by 'longjmp' or 'vfork' messages for a few variables. These automatic variables were expected to be changed between a setjmp/longjmp and hold their values, so are now marked volatile. | |||
2014-05-18 | test1014: GSS-API is only in curl-config. not in curl | Daniel Stenberg | |
Follow-up to commit 121bcfee5d1. curl-config --features now lists GSS-API but it is not a listed feature in curl -V. This should probably be synchronized. | |||
2014-05-18 | test1134: verify CREDSPERREQUEST for HTTP | Daniel Stenberg | |
Verifies that the change in 68f0166a92 works as intended and that different HTTP auth credentials to the same host still re-uses the connection properly. | |||
2014-05-15 | timers: fix timer regression involving redirects / reconnects | Daniel Stenberg | |
In commit 0b3750b5c23c25f (released in 7.36.0) we fixed a timeout issue but instead broke the timings. To fix this, I introduce a new timestamp to use for the timeouts and restored the previous timestamp and timestamp position so that the old timer functionality is restored. In addition to that, that change also broke connection timeouts for when more than one connect was used (as it would then count the total time from the first connect and not for the most recent one). Now Curl_timeleft() has been modified so that it checks against different start times depending on which timeout it checks. Test 1303 is updated accordingly. Bug: http://curl.haxx.se/mail/lib-2014-05/0147.html Reported-by: Ryan Braud | |||
2014-05-11 | tests: Fixed up DIGEST-MD5 tests following commit 8342b6e1dc | Steve Holme | |
2014-05-09 | lib1506: make sure the transfers are not within the same ms | Daniel Stenberg | |
Just to make sure the test is properly repeatable. Bug: http://curl.haxx.se/mail/lib-2014-05/0081.html Reported-by: Henrik | |||
2014-05-09 | libtests: add a wait_ms() function | Daniel Stenberg | |
This allows a libcurl test to portably sleep for a given number of milliseconds. | |||
2014-05-09 | test87: Get rid of extraneous square brackets in tag | Dan Fandrich | |
2014-05-05 | tests: Use standard libtest return codes when relevant | Dan Fandrich | |
2014-05-05 | test1513: Don't return an uninitialized variable on init failure | Dan Fandrich | |
2014-05-04 | mprintf: allow %.s with data not being zero terminated | Daniel Stenberg | |
If the precision is indeed shorter than the string, don't strlen() to find the end because that's not how the precision operator works. I also added a unit test for curl_msnprintf to make sure this works and that the fix doesn't a few other basic use cases. I found a POSIX compliance problem that I marked TODO in the unit test, and I figure we need to add more tests in the future. Reported-by: Török Edwin | |||
2014-05-01 | test585: Fixed NULL pointer dereference in fopen | Dan Fandrich | |
2014-04-28 | copyright: Updated following recent edits | Steve Holme | |
2014-04-29 | runtests.pl: Improved the check for a crash during torture tests | Dan Fandrich | |
2014-04-29 | Added a few more const where possible | Dan Fandrich | |
2014-04-28 | unit1395: Fixed null pointer dereference on torture test | Dan Fandrich | |
2014-04-23 | test325: verify --proto-redir https=>http | Daniel Stenberg | |
2014-04-22 | tests: Fixed torture test for tests 1526 & 1527 | Dan Fandrich | |
2014-04-22 | sockfilt.c: clean up threaded approach and add documentation | Marc Hoersken | |
2014-04-22 | sockfilt.c: zero initialize variable | Marc Hoersken | |
2014-04-22 | sockfilt.c: fixed getting stuck waiting for MinGW stdin pipe | Marc Hoersken | |
2014-04-20 | sockfilt.c: properly handle disk files, pipes and character input | Marc Hoersken | |
2014-04-20 | sockfilt.c: ignore non-key-events and continue waiting for input | Marc Hoersken | |