summaryrefslogtreecommitdiff
path: root/tests/data/test87
Commit message (Collapse)AuthorAgeFilesLines
* tests: make test file names more uniqueDan Fandrich2017-05-091-2/+2
| | | | | | Include the test number in the names of files written out by tests to reduce the chance of accidental duplication and to make it more clear which test is associated with which file.
* test 1326: fix file check since curl is outputting binary dataMarc Hoersken2015-12-171-1/+1
|
* tests: added globbing keyword to URL globbing testsDan Fandrich2014-07-121-0/+3
|
* test87: Get rid of extraneous square brackets in tagDan Fandrich2014-05-091-1/+1
|
* urlglob: better detect unclosed braces, empty lists and overflowsDaniel Stenberg2013-08-161-7/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A rather big overhaul and cleanup. 1 - curl wouldn't properly detect and reject globbing that ended with an open brace if there were brackets or braces before it. Like "{}{" or "[0-1]{" 2 - curl wouldn't properly reject empty lists so that "{}{}" would result in curl getting (nil) strings in the output. 3 - By using strtoul() instead of sscanf() the code will now detected over and underflows. It now also better parses the step argument to only accept positive numbers and only step counters that is smaller than the delta between the maximum and minimum numbers. 4 - By switching to unsigned longs instead of signed ints for the counters, the max values for []-ranges are now very large (on 64bit machines). 5 - Bumped the maximum number of globs in a single URL to 100 (from 10) 6 - Simplified the code somewhat and now it stores fixed strings as single- entry lists. That's also one of the reasons why I did (5) as now all strings between "globs" will take a slot in the array. Added test 1234 and 1235 to verify. Updated test 87. This commit fixes three separate bug reports. Bug: http://curl.haxx.se/bug/view.cgi?id=1264 Bug: http://curl.haxx.se/bug/view.cgi?id=1265 Bug: http://curl.haxx.se/bug/view.cgi?id=1266 Reported-by: Will Dietz
* Updated the test harness to check for protocol support before running eachDan Fandrich2007-03-091-0/+3
| | | | | test, fixing KNOWN_BUGS #11. Fixed some tests to more accurately specify their required servers and features.
* Convert (most of) the test data files into genuine XML. A handful stillDan Fandrich2007-01-231-1/+3
| | | | | | are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
* keyword updateDaniel Stenberg2005-04-271-0/+6
|
* Now the test servers and test cases can run on a custom port number. There'sDaniel Stenberg2004-09-081-1/+1
| | | | | | no fixed port numbers in use anymore. Starting now, the default ports the servers use are 8990 - 8993. There's no option to modify these yet, but changing the $base option in the top of the runtests.pl script.
* test87 verifies the new and better check for bad -o #[num] stuffDaniel Stenberg2003-08-141-0/+25