Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-20 | sockfilt.c: free memory in case of memory allocation errors | Marc Hoersken | |
2014-04-18 | test810: Updated to use new IMAP URL query string functionality | Steve Holme | |
2014-04-06 | tests: Disabled DIGEST-MD5 tests when running with SSPI enabled | Steve Holme | |
2014-04-04 | PROXYHEADER: send these headers in "normal" proxy requests too | Daniel Stenberg | |
Updated the docs to clarify and the code accordingly, with test 1528 to verify: When CURLHEADER_SEPARATE is set and libcurl is asked to send a request to a proxy but it isn't CONNECT, then _both_ header lists (CURLOPT_HTTPHEADER and CURLOPT_PROXYHEADER) will be used since the single request is then made for both the proxy and the server. | |||
2014-04-04 | test1428: verify --proxy-header | Daniel Stenberg | |
2014-04-04 | CURLOPT_HEADEROPT: added | Daniel Stenberg | |
Modified the logic so that CURLOPT_HEADEROPT now controls if PROXYHEADER is actually used or not. | |||
2014-04-04 | CURLOPT_PROXYHEADER: set headers for proxy-only | Daniel Stenberg | |
Includes docs and new test cases: 1525, 1526 and 1527 Co-written-by: Vijay Panghal | |||
2014-04-04 | HTTP: don't send Content-Length: 0 _and_ Expect: 100-continue | Daniel Stenberg | |
Without request body there's no point in asking for 100-continue. Bug: http://curl.haxx.se/bug/view.cgi?id=1349 Reported-by: JimS | |||
2014-04-03 | tests: unified use of some keywords | Dan Fandrich | |
2014-04-03 | tests: added some missing closing tags | Dan Fandrich | |
2014-04-03 | runtests: insist on a <keywords> section | Daniel Stenberg | |
Since all present tests now have <keywords> listed, this script will now refuse to run a given test case if no such section is provided. Hopefully this will help us make sure new test cases get keywords added at start. | |||
2014-04-03 | tests: add keywords to the last 7 tests lacking them | Daniel Stenberg | |
2014-04-01 | tests: Added SMTP with credientials test when not supported by server | Steve Holme | |
2014-03-31 | tests: Added SMTP with credentials test for RFC-821 based server | Steve Holme | |
Added SMTP (RFC-821 only) based test case as a reference for the fix provided by commit fe260b75e7. | |||
2014-03-30 | curl: stop interpreting IPv6 literals as glob patterns. | Paul Marks | |
This makes it possible to fetch from an IPv6 literal without specifying the -g option. Globbing remains available elsehwere in the URL. For example: curl http://[::1]/file[1-3].txt This creates no ambiguity, because there is no overlap between the syntax of valid globs and valid IPv6 literals. Globs contain hyphens and at most 1 colon, while IPv6 literals have no hyphens, and at least 2 colons. The peek_ipv6() parser simply whitelists a set of characters and counts colons, because the real validation happens later on. The character set includes A-Z, in case someone decides to implement support for scopes like [fe80::1%25eth0] in the future. Signed-off-by: Paul Marks <pmarks@google.com> | |||
2014-03-30 | test938: Updated to use file input for upload | Steve Holme | |
As the second URL won't be passed input from stdin. | |||
2014-03-30 | test836: Fixed incorrect username in expected output | Steve Holme | |
2014-03-30 | DISABLED: 836, 882 and 938 hang | Daniel Stenberg | |
2014-03-30 | runtests: check protocol before data | Daniel Stenberg | |
When the protocol part fails, the data usually does too but the protocol part is often more fundamental and often provide the clues you need to fix the test case. | |||
2014-03-30 | ftpserver.pl: Extended the full text reply regular expression | Steve Holme | |
Extended the regex to include other valid characters such as those used in the reply text of Test 836. | |||
2014-03-30 | keywords: sort case insensitive | Daniel Stenberg | |
2014-03-30 | tests: remove trailing CRs from keywords | Daniel Stenberg | |
2014-03-30 | keywords: sort keywords alphabetically | Daniel Stenberg | |
2014-03-30 | keywords: don't use STDERR for good info | Daniel Stenberg | |
2014-03-30 | tests: Added email unit tests to verify login credential connection re-use | Steve Holme | |
2014-03-30 | tests: Corrected "APOP" authentication keyword | Steve Holme | |
2014-03-30 | tests: Replaced email authentication keywords with SASL based keywords | Steve Holme | |
As the email protocols implement SASL authentication rather than IMAP, POP3 and SMTP specific authentication, updated the authentication keywords to reflect this. | |||
2014-03-30 | tests: Added "Clear Text" authentication keyword | Steve Holme | |
2014-03-30 | tests: Added "SASL" authentication keyword | Steve Holme | |
2014-03-30 | ftpserver.pl: Removed some unused variables | Steve Holme | |
2014-03-30 | ftpserver.pl: Reworked some variable names to be more meaningful | Steve Holme | |
2014-03-29 | ftpserver.pl: Corrected some indentation in senddata() | Steve Holme | |
2014-03-29 | lib1513: fix callback proto to silence warning | Daniel Stenberg | |
2014-03-29 | ftpserver.pl: Added fallback to <data> support when using multiple URLs | Steve Holme | |
Added support for falling back to <data> when <data1>, <data2>, etc... don't exist in the <reply> section of a unit test. | |||
2014-03-29 | ftpserver.pl: Updated email based get reply data code to use new method | Steve Holme | |
2014-03-29 | ftpserver.pl: Fixed syntax error from commit 3a29ee41 | Steve Holme | |
2014-03-29 | ftpserver.pl: Updated argument code in STATUS_imap() to be more meaningful | Steve Holme | |
2014-03-29 | ftpserver.pl: Introduced common method for getting a test's reply data | Steve Holme | |
2014-03-26 | test1397: Fixed compilation with some SSL backends | Dan Fandrich | |
The test is only valid when one of four SSL backends is in use, and must otherwise return success. | |||
2014-03-26 | test815/816: Use authentication for both URLs | Dan Fandrich | |
The improved connection reuse logic would otherwise create a new connection for each one, which isn't supported by the test server, nor expected by the test. | |||
2014-03-25 | test1397: unit test for certificate name wildcard handling | Richard J. Moore | |
2014-03-19 | runtests.pl: verify specified test cases | Daniel Stenberg | |
To better allow arguments like "1 to 9999" without flooding the terminal with error messages, the given test cases range is now checked and only test numbers with existing files are actually run. | |||
2014-03-15 | tests: made the SASL modes separate keywords | Dan Fandrich | |
2014-03-15 | tests: added missing HTTP NTLM auth keywords | Dan Fandrich | |
Also, removed an unneeded strippart | |||
2014-03-15 | tests: disable valgrind on the remaining scp/sftp tests | Dan Fandrich | |
2014-03-15 | valgrind.supp: added another test 165 suppression | Dan Fandrich | |
This one seems to come and go as the optimizer decides how best to inline some functions. | |||
2014-03-14 | test640/1: add tests for --head with sftp and scp | Dan Fandrich | |
This option is currently rather useless with these protocols when no quote command is given, but it is valid. | |||
2014-02-28 | test96: Updated accordly for recent changes | Steve Holme | |
2014-02-26 | tool: Reworked argument parsing to use --next/-: | Steve Holme | |
Follow up to commit 1a9b58fcb2 to replace the : command line option with --next and -:. | |||
2014-02-26 | valgrind.supp: tweaked a test 165 suppression | Dan Fandrich | |
A recent change seems to have slightly changed the call stack produced by the gcc optimizer. |