runtests.pl: removed unused arguments to valgrindparse

This commit is contained in:
Dan Fandrich 2017-05-27 14:30:24 +02:00
parent d90b729c3b
commit 14514c9796
2 changed files with 2 additions and 4 deletions

View File

@ -4121,7 +4121,7 @@ sub singletest {
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
return 1;
}
my @e = valgrindparse($srcdir, $feature{'SSL'}, "$LOGDIR/$vgfile");
my @e = valgrindparse("$LOGDIR/$vgfile");
if(@e && $e[0]) {
if($automakestyle) {
logmsg "FAIL: $testnum - $testname - valgrind\n";

View File

@ -23,9 +23,7 @@
use File::Basename;
sub valgrindparse {
my ($srcdir, # the dir in which the runtests script resides
$sslenabled,
$file) = @_;
my ($file) = @_;
my @o;
open(VAL, "<$file");
@o = <VAL>;