diff options
| author | Dan Fandrich <dan@coneharvesters.com> | 2017-08-26 22:01:42 +0200 | 
|---|---|---|
| committer | Dan Fandrich <dan@coneharvesters.com> | 2017-08-26 22:01:42 +0200 | 
| commit | d7d0c9d9538df7f78b83cc91da8ec96c7d160f6a (patch) | |
| tree | 8a302768da4e8b46ae08f6ff796d95c9c3a8c3c5 /tests/unit/unit1605.c | |
| parent | 09fc61e43607c4131475b0d31f41dd173d490b24 (diff) | |
tests: Make sure libtests & unittests call curl_global_cleanup()
These were missed in commit c468c27b.
Diffstat (limited to 'tests/unit/unit1605.c')
| -rw-r--r-- | tests/unit/unit1605.c | 17 | 
1 files changed, 11 insertions, 6 deletions
diff --git a/tests/unit/unit1605.c b/tests/unit/unit1605.c index 2fe3a5aca..57a9199c5 100644 --- a/tests/unit/unit1605.c +++ b/tests/unit/unit1605.c @@ -23,21 +23,28 @@  #include "llist.h" +static CURL *easy; +  static CURLcode unit_setup(void)  { -  return CURLE_OK; +  int res = CURLE_OK; + +  global_init(CURL_GLOBAL_ALL); +  easy = curl_easy_init(); +  if(!easy) +    return CURLE_OUT_OF_MEMORY; +  return res;  }  static void unit_stop(void)  { - +  curl_easy_cleanup(easy); +  curl_global_cleanup();  }  UNITTEST_START    int len;    char *esc; -  CURL *easy = curl_easy_init(); -  abort_unless(easy, "out of memory");    esc = curl_easy_escape(easy, "", -1);    fail_unless(esc == NULL, "negative string length can't work"); @@ -45,6 +52,4 @@ UNITTEST_START    esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);    fail_unless(esc == NULL, "negative string length can't work"); -  curl_easy_cleanup(easy); -  UNITTEST_STOP  | 
