Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-02 | - Craig A West brought us: libcurl now defaults to do CONNECT with HTTP | Daniel Stenberg | |
version 1.1 instead of 1.0 like before. This change also introduces the new proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0 option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0. I updated all test cases cases that use CONNECT and I tried to do some using --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run. | |||
2009-01-26 | - Alexey Borzov filed bug report #2535504 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2535504) pointing out that realms with quoted quotation marks in HTTP Digest headers didn't work. I've now added test case 1095 that verifies my fix. | |||
2009-01-21 | Improved the title and keywords | Dan Fandrich | |
2009-01-21 | Fixed a couple more locale-dependent toupper conversions, mainly for | Dan Fandrich | |
clarity. This does fix one problem that causes ;type=i FTP URLs to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is used (test case 561) Added tests 561 and 1092 through 1094 to test various combinations of ;type= and ;mode= URLs that could potentially fail in the Turkish locale. | |||
2009-01-21 | Call setlocale() for libtest tests to test the effects of locale-induced | Dan Fandrich | |
libc changes on libcurl. | |||
2009-01-07 | Always use nocheck="yes" for consistency | Dan Fandrich | |
2008-12-30 | sync'd address with other tests. | Gunter Knauf | |
2008-12-30 | trial with an address which has a valid domain part but invalid host to ↵ | Gunter Knauf | |
avoid dns redirections. | |||
2008-12-11 | Mention what makes this test special | Dan Fandrich | |
2008-12-09 | Added test cases 1089 and 1090 to test --write-out after a redirect to | Dan Fandrich | |
test a report that the size didn't work, but these test cases pass. | |||
2008-12-08 | - Fred Machado posted about a weird FTP problem on the curl-users list and when | Daniel Stenberg | |
researching it, it turned out he got a 550 response back from a SIZE command and then I fell over the text in RFC3659 that says: The presence of the 550 error response to a SIZE command MUST NOT be taken by the client as an indication that the file cannot be transferred in the current MODE and TYPE. In other words: the change I did on September 30th 2008 and that has been included in the last two releases were a regression and a bad idea. We MUST NOT take a 550 response from SIZE as a hint that the file doesn't exist. | |||
2008-11-25 | Added tests 1087 and 1088 to test Basic authentication on a redirect | Dan Fandrich | |
with and without --location-trusted | |||
2008-11-25 | If a HTTP request is Basic and num is already >=1000, the HTTP test server | Dan Fandrich | |
adds 1 to num to get the data section to return. This allows testing authentication negotiations using the Basic authentication method. | |||
2008-11-24 | Fully clean up after test 608 so that it can be run twice in succession. | Dan Fandrich | |
2008-11-21 | restored from my messy previous commit mistake | Daniel Stenberg | |
2008-11-19 | - I removed the default use of "Pragma: no-cache" from libcurl when a proxy is | Daniel Stenberg | |
used. It has been used since forever but it was never a good idea to use unless explicitly asked for. | |||
2008-11-19 | Josef Wolf's extension that allows a $TESTDIR/gdbinit$testnum file that when | Daniel Stenberg | |
you use runtests.pl -g, will be sourced by gdb to allow additional fancy or whatever you see fit | |||
2008-11-17 | Display the time in verbose mode during the torture tests to help determine | Dan Fandrich | |
when the tests stall. | |||
2008-11-13 | Shortened some FTP responses to allow the timeout to be reduced by a second | Dan Fandrich | |
while still causing a timeout during the data phase. | |||
2008-11-12 | Fixed an OOM problem with test 560 | Dan Fandrich | |
2008-11-12 | Give the test an extra second to run so it passes on slow machines | Dan Fandrich | |
2008-11-11 | Added test case 560: | Daniel Stenberg | |
This test was added after the HTTPS-using-multi-interface with OpenSSL regression of 7.19.1 to hopefully prevent this embarassing mistake from appearing again... Unfortunately the bug wasn't triggered by this test, which presumably is because the connect to a local server is too fast/different compared to the real/distant servers we saw the bug happen with. | |||
2008-11-11 | Added missing <keywords> | Daniel Stenberg | |
2008-11-07 | terminate with appropriate exit code | Yang Tse | |
2008-11-06 | Added test 1086 to test a timeout the occurs during an FTP data transfer. | Dan Fandrich | |
2008-11-06 | Make the SLOWDOWN option slow the FTP data connection, not just the | Dan Fandrich | |
control connection. | |||
2008-10-31 | fix OOM handling | Yang Tse | |
2008-10-30 | Use our Curl_addrinfo definition even when an addrinfo struct is available. | Yang Tse | |
Use a wrapper function to call system's getaddrinfo(). | |||
2008-10-30 | SLOWDOWN actually causes a 0.01 second delay between bytes | Dan Fandrich | |
2008-10-28 | Changed the "resolve" test precheck program to verify that an IPv6 socket | Dan Fandrich | |
can be created before resolving the IPv6 name. In the context of running a test, it doesn't make sense to run an IPv6 test when a host is resolvable but IPv6 isn't usable. This should fix failures of test 1085 on hosts with library and DNS support for IPv6 but where actual use of IPv6 has been administratively disabled. | |||
2008-10-28 | fix test # 558 and 559 CFLAGS | Yang Tse | |
2008-10-27 | don't skip tests 558 and 559 on i686 icc autobuilds | Yang Tse | |
2008-10-27 | test #558 tests internal hash create/destroy | Yang Tse | |
test #559 tests internal hash create/add/destroy | |||
2008-10-27 | Skip test #558 when libcurl is built with hidden symbols | Yang Tse | |
2008-10-27 | For tracing purposes log a fake call to getaddrinfo | Yang Tse | |
when allocating/building the fake Curl_addrinfo. | |||
2008-10-27 | avoid using Curl_ip2addr(), simply build up a fake Curl_addrinfo | Yang Tse | |
2008-10-26 | convert test #558 into something more interesting, attempting | Yang Tse | |
now to minimally exercise some internal hash routines. | |||
2008-10-26 | test #558 verifies loop operation using malloc() and free() | Yang Tse | |
2008-10-23 | moved some definitions from tftp.h to tftpd.c | Yang Tse | |
2008-10-23 | fix compiler warning | Yang Tse | |
2008-10-23 | Tweaked a few tests to test proper Turkish locale handling | Dan Fandrich | |
2008-10-22 | For i686 icc autobuilds: | Yang Tse | |
Re-enable all tests for debug-enabled builds. For debug-disabled builds only 8 tests are enabled. | |||
2008-10-21 | Fixed some problems with SFTP range support to fix test cases 634 through 637. | Dan Fandrich | |
2008-10-16 | Added missing HTTP proxy and other keywords | Dan Fandrich | |
2008-10-15 | A <precheck> command is considered to have failed if it returns a non-zero | Dan Fandrich | |
return code. This way, if the precheck command can't be run at all for whatever reason, it's treated as a precheck failure which causes the test to be skipped. | |||
2008-10-14 | attempt to fix compiler warning: | Yang Tse | |
`variable' might be clobbered by `longjmp' or `vfork' | |||
2008-10-13 | Don't rely on shell support to run multiple precheck tests | Dan Fandrich | |
2008-10-12 | Ensure the IPv6 stack is operational before running this test (other tests | Dan Fandrich | |
use the startup of the IPv6 test server as a substitute check for this). | |||
2008-10-09 | Added HTTP as a required feature | Dan Fandrich | |
2008-10-09 | Added tests 633 through 637 to test the new file range support for SFTP. | Dan Fandrich | |
All but the first test cause an infinite loop or other failure and so are added to DISABLED. |