diff options
author | Monty Brandenberg <monty@lindenlab.com> | 2012-07-12 17:46:53 +0000 |
---|---|---|
committer | Monty Brandenberg <monty@lindenlab.com> | 2012-07-12 17:46:53 +0000 |
commit | d45b2e7caece787dce4be501b103432c0f06c0f2 (patch) | |
tree | 0f386545e330ad0a2cf98ddb96a78ff72995283b /indra/llcorehttp/examples | |
parent | 7010459f04177aef1875a110b3d33e10c8ec5cad (diff) |
SH-3183 Use valgrind on the library.
Using http_texture_load as the test subject, library looks clean. Did
some better shutdown in the program itself and it looks better. Libcurl
itself is making a lot of noise. Adapted testrunner to run valgrind as
well but the memory allocation tester in the tools themselves grossly
interferes with Valgrind operations.
Diffstat (limited to 'indra/llcorehttp/examples')
-rw-r--r-- | indra/llcorehttp/examples/http_texture_load.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llcorehttp/examples/http_texture_load.cpp b/indra/llcorehttp/examples/http_texture_load.cpp index bcb322bd5c..998dc9240b 100644 --- a/indra/llcorehttp/examples/http_texture_load.cpp +++ b/indra/llcorehttp/examples/http_texture_load.cpp @@ -269,7 +269,10 @@ int main(int argc, char** argv) << std::endl; // Clean up + hr->requestStopThread(NULL); + ms_sleep(1000); delete hr; + LLCore::HttpRequest::destroyService(); term_curl(); return 0; |