1. 12 Feb, 2007 4 commits
  2. 11 Feb, 2007 2 commits
  3. 10 Feb, 2007 3 commits
  4. 09 Feb, 2007 3 commits
    • 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
  5. 08 Feb, 2007 2 commits
  6. 07 Feb, 2007 4 commits
  7. 06 Feb, 2007 11 commits
  8. 05 Feb, 2007 5 commits
  9. 04 Feb, 2007 5 commits
  10. 03 Feb, 2007 1 commit