diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-28 21:26:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-28 21:26:06 +0000 |
commit | ae13c93b7db9f9c68eaf95150ed551b3b649d8c4 (patch) | |
tree | 8ace8b70b39ec08504fcacc9dbae2e38522a8f32 /tests/data | |
parent | b9f8a4a477a74781fddc28ba2fe9d0713de0acf9 (diff) |
Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl
would crash if a bad function sequence was used when shutting down after
using the multi interface (i.e using easy_cleanup after multi_cleanup) so
precautions have been added to make sure it doesn't any more - test case 529
was added to verify.
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/Makefile.am | 4 | ||||
-rw-r--r-- | tests/data/test529 | 55 |
2 files changed, 56 insertions, 3 deletions
diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index a5eec9545..067499c6f 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -35,6 +35,4 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \ test256 test257 test258 test259 test260 test261 test262 test263 test264 \ test265 test266 test267 test268 test269 test270 test271 test272 test273 \ test274 test275 test524 test525 test276 test277 test526 test527 test528 \ - test530 DISABLED test278 test279 test531 test280 - - + test530 DISABLED test278 test279 test531 test280 test529 diff --git a/tests/data/test529 b/tests/data/test529 new file mode 100644 index 000000000..d5c657d30 --- /dev/null +++ b/tests/data/test529 @@ -0,0 +1,55 @@ +<info> +<keywords> +FTP +PORT +STOR +</keywords> +</info> +# Server-side +<reply> +<data> +</data> +</reply> + +# Client-side +<client> +<server> +ftp +</server> +<tool> +lib529 +</tool> + <name> +FTP PORT upload using multi interface (weird cleanup function sequence) + </name> + <command> +ftp://%HOSTIP:%FTPPORT/path/529 log/upload529 +</command> +<file name="log/upload529"> +Moooooooooooo + upload this +</file> +</client> + +# Verify data after the test has been "shot" +<verify> +<strip> +^PORT .* +^EPRT .* +^LPRT .* +</strip> +<protocol> +USER anonymous
+PASS curl_by_daniel@haxx.se
+PWD
+CWD path
+PORT 127,0,0,1,5,109
+TYPE I
+STOR 529
+QUIT
+</protocol> +<upload> +Moooooooooooo + upload this +</upload> +</verify> |