Skip to content
Snippets Groups Projects
  1. Sep 17, 2007
  2. Sep 12, 2007
  3. Sep 11, 2007
    • Daniel Stenberg's avatar
      Daniel S (12 September 2007) · 9e88343a
      Daniel Stenberg authored
      - Bug report #1792649 (http://curl.haxx.se/bug/view.cgi?id=1792649) pointed
        out a problem with doing an empty upload over FTP on a re-used connection.
        I added test case 541 to reproduce it and to verify the fix.
      
      - I noticed while writing test 541 that the FTP code wrongly did a CWD on the
        second transfer as it didn't store and remember the "" path from the
        previous transfer so it would instead CWD to the entry path as stored. This
        worked, but did a superfluous command. Thus, test case 541 now also verifies
        this fix.
      9e88343a
  4. Aug 13, 2007
  5. Aug 07, 2007
  6. Jul 23, 2007
  7. Jul 17, 2007
  8. Jul 15, 2007
  9. Jul 14, 2007
  10. May 16, 2007
  11. May 14, 2007
  12. May 02, 2007
  13. Apr 30, 2007
  14. Apr 23, 2007
  15. Apr 05, 2007
  16. Apr 04, 2007
  17. Apr 03, 2007
  18. Mar 16, 2007
  19. Mar 10, 2007
  20. Mar 03, 2007
  21. Feb 22, 2007
  22. Feb 20, 2007
  23. Feb 19, 2007
  24. Feb 17, 2007
  25. Feb 16, 2007
  26. Feb 09, 2007
    • Yang Tse's avatar
      Include both testutil.c and testutil.h, and not just testutil.c, in the · 8c9233f6
      Yang Tse authored
      list of source files for those tests that use it. Otherwise testutil.h
      might not be found by the compiler.
      8c9233f6
    • Yang Tse's avatar
      Some tests were using functions curlx_tvnow and curlx_tvdiff which are not · 6fcf98f6
      Yang Tse authored
      part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx
      The documented way of using them would be to use timeval.c as a source code file.
      
      The above described method works very well when statically linking libcurl and
      apps, test programs, but has several drawbacks when you build a true shared
      libcurl (i.e. Name space clash at linkage stage as functions are defined more
      than once. Windows makefiles are not capable of handling this system of
      source-level sharing)
      
      So...
      
      Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff
      which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this
      we avoid the above described problems, and the code in the testsuite does not
      impose the need to keep those functions public in libcurl even when not part of
      the API.
      6fcf98f6
    • Yang Tse's avatar
      Some tests were using functions curlx_tvnow and curlx_tvdiff which are not · 2f4fe017
      Yang Tse authored
      part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx
      The documented way of using them would be to use timeval.c as a source code file.
      
      The above described method works very well when statically linking libcurl and
      apps, test programs, but has several drawbacks when you build a true shared
      libcurl (i.e. Name space clash at linkage stage as functions are defined more
      than once. Windows makefiles are not capable of handling this system of
      source-level sharing)
      
      So...
      
      Now testutil.h and testutil.c define and implement tutil_tvnow and tutil_tvdiff
      which replace curlx_tvnow and curlx_tvdiff for the libtest programs. Doing this
      we avoid the above described problems, and the code in the testsuite does not
      impose the need to keep those functions public in libcurl even when not part of
      the API.
      2f4fe017
  27. Feb 04, 2007
  28. Jan 31, 2007
  29. Jan 30, 2007
Loading