mirror of
https://github.com/curl/curl.git
synced 2025-09-11 14:42:40 +03:00
parent
cbbf4d8ed2
commit
b2dc95540a
|
@ -465,7 +465,7 @@ lib1539_SOURCES = lib1514.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
|
||||||
lib1539_LDADD = $(TESTUTIL_LIBS)
|
lib1539_LDADD = $(TESTUTIL_LIBS)
|
||||||
lib1539_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1539
|
lib1539_CPPFLAGS = $(AM_CPPFLAGS) -DLIB1539
|
||||||
|
|
||||||
lib1540_SOURCES = lib1540.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
|
lib1540_SOURCES = lib1540.c $(SUPPORTFILES) $(TESTUTIL) $(TSTTRACE) $(WARNLESS)
|
||||||
lib1540_LDADD = $(TESTUTIL_LIBS)
|
lib1540_LDADD = $(TESTUTIL_LIBS)
|
||||||
|
|
||||||
lib1541_SOURCES = lib1541.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
|
lib1541_SOURCES = lib1541.c $(SUPPORTFILES) $(TESTUTIL) $(WARNLESS)
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
||||||
|
#include "testtrace.h"
|
||||||
#include "testutil.h"
|
#include "testutil.h"
|
||||||
#include "warnless.h"
|
#include "warnless.h"
|
||||||
#include "memdebug.h"
|
#include "memdebug.h"
|
||||||
|
@ -107,6 +108,12 @@ CURLcode test(char *URL)
|
||||||
easy_setopt(curls, CURLOPT_XFERINFODATA, &st);
|
easy_setopt(curls, CURLOPT_XFERINFODATA, &st);
|
||||||
easy_setopt(curls, CURLOPT_NOPROGRESS, 0L);
|
easy_setopt(curls, CURLOPT_NOPROGRESS, 0L);
|
||||||
|
|
||||||
|
libtest_debug_config.nohex = 1;
|
||||||
|
libtest_debug_config.tracetime = 1;
|
||||||
|
test_setopt(curls, CURLOPT_DEBUGDATA, &libtest_debug_config);
|
||||||
|
easy_setopt(curls, CURLOPT_DEBUGFUNCTION, libtest_debug_cb);
|
||||||
|
easy_setopt(curls, CURLOPT_VERBOSE, 1L);
|
||||||
|
|
||||||
res = curl_easy_perform(curls);
|
res = curl_easy_perform(curls);
|
||||||
|
|
||||||
test_cleanup:
|
test_cleanup:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user