Commit 14514c97 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

runtests.pl: removed unused arguments to valgrindparse

parent d90b729c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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";
+1 −3
Original line number Diff line number Diff line
@@ -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>;