Commit 3732f12c authored by Andy Polyakov's avatar Andy Polyakov
Browse files

testlib/OpenSSL/Test.pm: address 5.10 warnings.

parent 9a2d2fb3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -735,8 +735,8 @@ sub __exeext {
sub __test_file {
    BAIL_OUT("Must run setup() first") if (! $test_name);

    my $f = pop . __exeext();
    $f = catfile($directories{BLDTEST},@_,$f);
    my $f = pop;
    $f = catfile($directories{BLDTEST},@_,$f . __exeext());
    $f = catfile($directories{SRCTEST},@_,$f) unless -x $f;
    return $f;
}
@@ -753,8 +753,8 @@ sub __perltest_file {
sub __apps_file {
    BAIL_OUT("Must run setup() first") if (! $test_name);

    my $f = pop . __exeext();
    $f = catfile($directories{BLDAPPS},@_,$f);
    my $f = pop;
    $f = catfile($directories{BLDAPPS},@_,$f . __exeext());
    $f = catfile($directories{SRCAPPS},@_,$f) unless -x $f;
    return $f;
}