1. 04 Jul, 2011 3 commits
  2. 03 Jul, 2011 2 commits
  3. 01 Jul, 2011 1 commit
  4. 30 Jun, 2011 2 commits
  5. 29 Jun, 2011 2 commits
  6. 28 Jun, 2011 1 commit
  7. 27 Jun, 2011 1 commit
  8. 24 Jun, 2011 3 commits
    • Dan Fandrich's avatar
      78480892
    • Dan Fandrich's avatar
      Display notes from setup file in testcurl.pl · 17a2d70d
      Dan Fandrich authored
      Autobuild submitters can use this to add some text to their
      setup files to describe issues they've found with the build
      or tests. This could include laying blame on test failures on
      network issues or dependent libraries, explaining away compiler
      warnings or providing any additional information that could be
      useful to people reviewing and investigating problems with the
      publicly available autobuild logs.  Note that persistent test
      failures that are not issues with curl itself should normally be
      fixed by excluding them from the test run instead.
      
      This is an entirely optional field that is not entered by the
      user the first time a new build is created.
      17a2d70d
    • Dan Fandrich's avatar
      Added a leap second test to test517 · 43ce5580
      Dan Fandrich authored
      43ce5580
  9. 23 Jun, 2011 4 commits
  10. 22 Jun, 2011 3 commits
  11. 21 Jun, 2011 7 commits
  12. 20 Jun, 2011 3 commits
  13. 19 Jun, 2011 1 commit
    • Amr Shahin's avatar
      unitteset: Curl_llist_move · c9f16e67
      Amr Shahin authored
      adding unit test for Curl_llist_move, documenting unit-tested functions
      in llist.c, changing unit-test to unittest, replacing assert calls with
      abort_unless calls
      c9f16e67
  14. 17 Jun, 2011 3 commits
  15. 14 Jun, 2011 2 commits
  16. 13 Jun, 2011 2 commits
    • Daniel Stenberg's avatar
      curl_formget: fix FILE * leak · 0aedccc1
      Daniel Stenberg authored
      Properly deal with the fact that the last fread() call most probably is
      a short read, and when using callbacks in fact all calls can be short
      reads. No longer consider a file read done until it returns a 0 from the
      read function.
      
      Reported by: Aaron Orenstein
      Bug: http://curl.haxx.se/mail/lib-2011-06/0048.html
      0aedccc1
    • Daniel Stenberg's avatar
      curl_formget: treat CURLFORM_STREAM better · 85881f9f
      Daniel Stenberg authored
      If a piece is set to use a callback to get the data, it should not be
      treated as data. It unfortunately also requires that curl_easy_perform()
      or similar has been used as otherwise the callback function hasn't been
      figured out and curl_formget won't know how to get the content.
      85881f9f