summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-10-25 14:30:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-10-25 14:30:51 +0000
commit824aa5f9181a22a55224d6945886894029d04a3d (patch)
tree87aa64ff006578a1df2b647dbcc3bf0224eebd90
parentca67dcbc055bb1a017e9d215859362348dbbcbaa (diff)
downloadgnurl-824aa5f9181a22a55224d6945886894029d04a3d.tar.gz
gnurl-824aa5f9181a22a55224d6945886894029d04a3d.tar.bz2
gnurl-824aa5f9181a22a55224d6945886894029d04a3d.zip
Michal Marek fixed the test script to be able to use valgrind even when the
lib is built shared with libtool.
-rw-r--r--CHANGES3
-rw-r--r--RELEASE-NOTES1
-rwxr-xr-xtests/runtests.pl8
3 files changed, 7 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index ab7cce15b..79f347084 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,9 @@
Changelog
Daniel S (25 October 2007)
+- Michal Marek fixed the test script to be able to use valgrind even when the
+ lib is built shared with libtool.
+
- Fixed a few memory leaks when the same easy handle is re-used to request
URLs with different protocols. FTP and TFTP related leaks. Caught thanks to
Dan F's new test cases.
diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index efd7e730a..962bff7d7 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -44,6 +44,7 @@ This release includes the following bugfixes:
o re-used connections a bit too much when using non-SSL protocols tunneled
over a HTTP proxy
o embed the manifest in VC8 builds
+ o use valgrind in the tests even when the lib is built shared with libtool
This release includes the following known bugs:
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 71a02c9f6..875d8baa6 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1747,7 +1747,7 @@ sub singletest {
}
if($valgrind) {
- $CMDLINE = "valgrind ".$valgrind_tool."--leak-check=yes --num-callers=16 ${valgrind_logfile}=log/valgrind$testnum $CMDLINE";
+ $CMDLINE = "$valgrind ".$valgrind_tool."--leak-check=yes --num-callers=16 ${valgrind_logfile}=log/valgrind$testnum $CMDLINE";
}
$CMDLINE .= "$cmdargs >>$STDOUT 2>>$STDERR";
@@ -2537,10 +2537,8 @@ if($valgrind) {
open(C, "<$CURL");
my $l = <C>;
if($l =~ /^\#\!/) {
- # The first line starts with "#!" which implies a shell-script.
- # This means libcurl is built shared and curl is a wrapper-script
- # Disable valgrind in this setup
- $valgrind=0;
+ # A shell script. This is typically when built with libtool,
+ $valgrind="../libtool --mode=execute $valgrind";
}
close(C);