aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-01-19 21:20:24 +0000
committerDaniel Stenberg <daniel@haxx.se>2010-01-19 21:20:24 +0000
commit6035a4b0440c515c4401e8ec2a3210ea37106a2f (patch)
tree921009a93a6657524a5958a1ad59ccad72e848df /tests/runtests.pl
parent469d3ed591cd07039bdb1c10102eaed4937ecbb8 (diff)
avoid "Use of uninitialized value $l in concatenation"
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 91de74b2f..8ffdf9c85 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -2864,7 +2864,7 @@ sub singletest {
closedir(DIR);
logmsg "DEBUG: No valgrind files\n" unless(@files);
my $f;
- my $l;
+ my $l="";
foreach $f (@files) {
logmsg "DEBUG: valgrind file: $f\n";
if($f =~ /^valgrind$testnum\./) {