summaryrefslogtreecommitdiff
path: root/tests/libtest/lib1507.c
Commit message (Collapse)AuthorAgeFilesLines
* whitespace fixesViktor Szakats2018-09-231-2/+0
| | | | | | | | | | | - replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
* code style: use spaces around plusesDaniel Stenberg2017-09-111-2/+2
|
* time: fix type conversions and compiler warningsMichael Kaufmann2017-05-241-19/+2
| | | | | | | | | Fix bugs and compiler warnings on systems with 32-bit long and 64-bit time_t. Reviewed-by: Daniel Stenberg Closes #1499
* checksrc: code style: use 'char *name' styleDaniel Stenberg2016-11-241-1/+1
|
* tests/libtest: follow our code style guidelines betterDaniel Stenberg2016-04-031-2/+2
| | | | ... checksrc of all test code is pending.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* tests: make a few lib15?? tests pass the OOM torture testsDan Fandrich2014-01-291-10/+10
|
* lib1507.c: Added missing set of CURLOPT_UPLOAD optionSteve Holme2013-11-151-0/+1
| | | | | | | Although this option should have already been set, the SMTP module can now download information from and send instructional commands to, an SMTP server, requiring the option to be set in order to perform a mail transfer.
* DONE: consider callback-aborted transfers prematureDaniel Stenberg2013-02-081-0/+167
This bug report properly identified that when doing SMTP and aborting the transfer with a callback, it must be considered aborted prematurely by the code to avoid QUIT etc to be attempted as that would cause a hang. The new test case 1507 verifies this behavior. Reported by: Patricia Muscalu Bug: http://curl.haxx.se/bug/view.cgi?id=1184