Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-18 | curl-config: fix --version | Daniel Stenberg | |
curl-config --version didn't output the correct version string (bug introduced in commit 0355e33b5f7b234cf3), and unfortunately the test case 1022 that was supposed to check for this was broken. This change fixes the test to detect this problem and it fixes the output. Bug: http://curl.haxx.se/bug/view.cgi?id=3288727 | |||
2011-04-07 | HTTP pipelining: Fix handling of zero-length responses | Chris Smowton | |
Also add test case 584 for the same Bug: http://curl.haxx.se/bug/view.cgi?id=3214223 | |||
2011-04-05 | Changed some nonportable types | Dan Fandrich | |
2011-03-22 | headers: more copyright headers added | Daniel Stenberg | |
2011-03-20 | unit1305: Fixed the test to match our coding style. | Julien Chaffraix | |
2011-03-18 | Added two more POP3 tests | Dan Fandrich | |
2011-03-18 | symbol-scan.pl: detect duplicates | Daniel Stenberg | |
Test 1119 now also makes sure that symbols-in-versions doesn't contain any duplicates | |||
2011-03-17 | Added support for LISTing a single POP3 message | Dan Fandrich | |
Added tests for a number of POP3 LIST operations, including one that shows a curl problem when listing no messages, so is disabled. | |||
2011-03-15 | lib582: use curl_socket_t for portability | Daniel Stenberg | |
2011-03-15 | Removed unused var. | Guenter Knauf | |
2011-03-13 | test 582: enabled again | Daniel Stenberg | |
Commit ca37692bf43b5ef should now hopefully make it run | |||
2011-03-13 | Revert "test582: enabled" | Daniel Stenberg | |
This reverts commit b8478187406cf625c9d0f10b45a082221130cc92. | |||
2011-03-13 | test583: verify early SSH multi remove handle | Daniel Stenberg | |
This test case is meant to verify that the logic in commit 60172a0446bbe3f8b actually works. This test failed for me before that change and it works after it. | |||
2011-03-12 | test582: enabled | Daniel Stenberg | |
2011-03-12 | test582: improved info messages | Daniel Stenberg | |
2011-03-10 | sources: update source headers | Daniel Stenberg | |
All C and H files now (should) feature the proper project curl source code header, which includes basic info, a copyright statement and some basic disclaimers. | |||
2011-03-09 | tests: phase out haxx.se | Daniel Stenberg | |
Instead of using haxx.se as a fixed magic host name in lots of tests, this is a first step to move toward the generic example.com host instead. | |||
2011-03-09 | test523: avoid using haxx.se | Daniel Stenberg | |
... since search engines find what they think is a URL in this, they hammer www.haxx.se on this port! | |||
2011-03-08 | lib582: used for test 582 | Daniel Stenberg | |
Accidentally not included in commit 0e74e1d8d83 | |||
2011-03-08 | sftp-multi: test 582 added | Henry Ludemann | |
Add test 582 for uploading a file using sftp and the multi interface. (Patch and test slightly tweaked by Daniel Stenberg) Initially marked as disabled until it is fixed in the source. | |||
2011-03-04 | Moved test 577 into the unit test framework as test 1307 | Dan Fandrich | |
2011-03-04 | Added unit test 1306 so tests 558 & 559 are now fully replaced | Dan Fandrich | |
2011-03-04 | The unit test argument is allowed to be used | Dan Fandrich | |
2011-03-04 | Converted tests 558 & 559 to use the unit test framework as 1305 | Dan Fandrich | |
Test 558 was just a subset of 559 which is something that can be easily added later. | |||
2011-03-04 | Fixed test 1300 to pass the torture test | Dan Fandrich | |
2011-03-04 | Added abort_* unit test macros | Dan Fandrich | |
These are for when a test failure makes it impossible to continue running further tests. | |||
2011-02-22 | runtests.pl/stopserver: space separate pids | Daniel Stenberg | |
The stopserver function would append pids to kill and could append them without separating them with space properly. The result would be a very large number that by (some implementations of) kill would be interpreted as a negative number and that process group would be wiped... Bug: http://curl.haxx.se/bug/view.cgi?id=3188836 Reported by: Greg Pratt | |||
2011-02-20 | tests: Cleaned up netrc testing. | Julien Chaffraix | |
Removed the "netrc_debug" keyword replaced with --netrc-file additions. Removed the debug code from Curl_parsenetrc as it is superseeded by --netrc-file. | |||
2011-02-10 | netrc: Enable setting up the filename in unit tests. | Julien Chaffraix | |
Unset the environment variable so that we can specify different filenames in the unit test. | |||
2011-02-10 | test1304: Added some unit tests for Curl_parsenetrc. | Julien Chaffraix | |
Moved some definitons into the header file so that we can reuse them. | |||
2011-02-02 | unit1300: code style cleanup | Daniel Stenberg | |
2011-02-02 | adding unit tests for Curl_llist_remove | Amr Shahin | |
2011-01-28 | test: add test 580 to the dist | Daniel Stenberg | |
2011-01-25 | tests: more multiple headers checks | Daniel Stenberg | |
2011-01-25 | HTTP: memory leak on multiple Location: | Daniel Stenberg | |
The HTTP parser allocated memory on each received Location: header without properly freeing old data. Starting now, the code only considers the first Location: header and will blissfully ignore subsequent ones. Bug: http://curl.haxx.se/bug/view.cgi?id=3165129 Reported by: Martin Lemke | |||
2011-01-22 | Fixed C++ style comment not allowed in ISO C90. | Guenter Knauf | |
2011-01-21 | Mention axTLS in some more documentation | Dan Fandrich | |
2011-01-20 | runtests.pl: make -s not show skipped tests | Daniel Stenberg | |
2011-01-20 | unittest: add 3 tests to test1300 | Amr Shahin | |
Testing Curl_llist_insert_next | |||
2011-01-19 | dist: add new certs to tarball | Daniel Stenberg | |
2011-01-19 | TLS-SRP: support added when using GnuTLS | Quinn Slack | |
2011-01-05 | Made unit_setup() return an error code to abort the test early | Dan Fandrich | |
This makes it possible to skip the call to unit_stop() in such cases. Also use Curl_safefree() in unit test 1302 so it will pass the memory torture test. | |||
2011-01-04 | tests: <info> tag corrections | Daniel Stenberg | |
2011-01-04 | unittest: 1303 tests Curl_timeleft | Daniel Stenberg | |
I came up with 33 different ways to call it and verify that it returns the correct return code. | |||
2011-01-04 | curlcheck.h: add fail() | Daniel Stenberg | |
fail is a new function/macro that a test case can use to indicate a test failure for cases when the standard macros are not sufficient. | |||
2011-01-04 | Fixed path to allow out-of-tree builds | Dan Fandrich | |
2011-01-04 | ignore: all executable unit test cases | Daniel Stenberg | |
2011-01-04 | tests: add 1302 to the package | Daniel Stenberg | |
2011-01-04 | unittest: test base64 encode/decode | Daniel Stenberg | |
2011-01-04 | curlcheck.h: avoid using NULL pointers | Daniel Stenberg | |