aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2010-03-28Allow running ./tests/testcurl.pl from within git repo.Ben Greear
My first instinct was to run the test script within the checked out repository. This small change to the script allows that to work as expected. Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-03-27ignore pid files and stunnel.confDaniel Stenberg
all used while running tests
2010-03-27make sure git pull is actually done!Daniel Stenberg
2010-03-25remove all .cvsignore filesDaniel Stenberg
2010-03-25Avoid double newline for the 'last commits' log in testcurl.plTor Arntsen
The backtick command which extracts 'git log' lines come with a newline, so chomp the newline before calling logit(), as the logit function adds a newline by itself.
2010-03-25Change to version-independent git option for 'git log --oneline'Tor Arntsen
'git log --oneline' is a relatively recent Git function. It is documented to be the same as 'git log --pretty=oneline --abbrev-commit', so use that instead. It works all the way back to Git 1.5.0.
2010-03-25show 5 commits even if no git pull was madeDaniel Stenberg
2010-03-25don't touch ares/aclocal.m4 and show recent git commitsDaniel Stenberg
since c-ares no longer embedded, we must not touch such files anymore we show the 5 last git commits if git was proven in use, to help us see exactly what's being tested
2010-03-25s/CVS/DEV in the version string from the git repoDaniel Stenberg
2010-03-24Merge branch 'master' of github.com:bagder/curlBill Hoffman
2010-03-24Add .gitattributes files to turn off CRLF translation for some filesBill Hoffman
2010-03-24provide a version number as today's dateDaniel Stenberg
It should at least help visualize which autobuilds that are using this script.
2010-03-24testcurl now uses git instead of CVSDaniel Stenberg
2010-03-24remove debug printfsChris Conroy
2010-03-24remove trace of CVSDaniel Stenberg
2010-03-24Fix RTSP GET_PARAMETER empty and non-empty operation.Chris Conroy
Test coverage included. Thanks to Massimo Callegari for the bug report
2010-03-24s/CVS/DEV/ in the version string for repo versionsDaniel Stenberg
2010-03-24restore executable bits on some filesDaniel Stenberg
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2010-03-23enabled valgrindDaniel Stenberg
I ran it now successfully and it helped to pinpoint a libssh2 memory leak!
2010-03-23ignore more files generated when tests run in the source treeDaniel Stenberg
2010-02-26fix compiler warningYang Tse
2010-02-25fix file nameYang Tse
2010-02-25Fixed bug report #2958074 indicatingYang Tse
(http://curl.haxx.se/bug/view.cgi?id=2958074) that curl on Windows with option --trace-time did not use local time when timestamping trace lines. This could also happen on other systems depending on time souurce.
2010-02-24enable 802 and 803Yang Tse
2010-02-23fix socket data typeYang Tse
2010-02-22convert Curl_ultous() and Curl_ultouc() functions to curlx_ultous() andYang Tse
curlx_ultouc(), exposing them through curlx.h to allow proper code reuse later in our test harness.
2010-02-22updated sourcesYang Tse
2010-02-22_ Adjusted RFC821 HELO fallback and enabled test804Patrick Monnerat
2010-02-22- Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account.Patrick Monnerat
- SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback.
2010-02-20- Fixed the SMTP compliance by making sure RCPT TO addresses are specifiedDaniel Stenberg
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now get angle bracket wrapping automatically by libcurl unless the recipient starts with an angle bracket as then the app is assumed to deal with that properly on its own.
2010-02-20- I made the SMTP code expect a 250 response back from the server after theDaniel Stenberg
full DATA has been sent, and I modified the test SMTP server to also send that response. As usual, the DONE operation that is made after a completed transfer is still not doable in a non-blocking way so this waiting for 250 is unfortunately made blockingly.
2010-02-19fix compiler warningYang Tse
2010-02-18fix compiler warningYang Tse
2010-02-16replaced tabs with spacesYang Tse
2010-02-16fix Content-Length validationYang Tse
2010-02-15fix compiler warning: conversion from "long" to "size_t" may lose signYang Tse
2010-02-15fix compiler warning: conversion from "long" to "size_t" may lose signYang Tse
2010-02-14removed trailing whitespaceYang Tse
2010-02-14fix compiler warningYang Tse
2010-02-14Overhauled test suite getpart() function. Fixing potential out of boundsYang Tse
stack and memory overwrites triggered with huge test case definitions.
2010-02-12- Jack Zhang reported a problem with SMTP: we wrongly used multiple addressesDaniel Stenberg
in the same RCPT TO line, when they should be sent in separate single commands. I updated test case 802 to verify this. - I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl tool which made it try to output it as string for the --libcurl feature which could lead to crashes.
2010-02-10- remove extra "\r\n" from doc404_RTSPYang Tse
- avoid memory alignment issue when setting RTSP packet length
2010-02-09Removed some erroneous "compressed" key wordsDan Fandrich
2010-02-06warning fixYang Tse
2010-02-06OOM handling fixYang Tse
2010-02-05fix compiler warningYang Tse
2010-02-05fix compiler warningYang Tse
2010-02-05fix compiler warningYang Tse
2010-02-05Addes OOM handling for curl_easy_setopt() calls in testYang Tse