Changeset 3801 in MondoRescue for branches/3.3/MondoRescue/t


Ignore:
Timestamp:
Feb 16, 2024, 12:43:53 AM (3 months ago)
Author:
Bruno Cornec
Message:

Hopefully improve again commit hook

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/MondoRescue/t/01-read-all-link.t

    r3795 r3801  
    77# Create the structure for the tests
    88my $bd = tempdir(
    9     #CLEANUP => 1
     9    CLEANUP => 1
    1010    );
    1111
     
    2323copy "/usr/bin/perl","usr/bin" || die "$!";
    2424chmod 0755,"usr/bin/perl";
     25my $libc;
    2526foreach my $f (<"/lib/libc.so.[0-9]*">) {
    2627    copy "$f","usr/lib" || die "$!";
     28    $libc = $f;
    2729}
    2830
     
    5557    );
    5658
    57 eval {
    58     require Test;
    59     Test->import();
     59my $more = 1;
     60
     61eval
     62{
     63        require Test::More;
     64        Test::More->import();
     65        no_plan();
    6066};
     67# Test::More not found so simpler test
    6168if ($@) {
    62         require Test::Simple;
    63     Test::Simple->import();
     69    $more = 0;
     70    eval {
     71        require Test;
     72        Test->import();
     73    };
     74    if ($@) {
     75        require Test::Simple;
     76        Test::Simple->import();
     77    }
    6478}
    6579plan(tests => 12);
     
    8397sub myis {
    8498
    85 my $p1 = shift;
    86 my $p2 = shift;
    87 my $p3 = shift;
    88 print "# test $p3\n";
    89 return(ok($p1,$p2));
     99if ($more eq 1) {
     100    return(is(@_));
     101} else {
     102    my $p1 = shift;
     103    my $p2 = shift;
     104    my $p3 = shift;
     105    print "# test $p3\n";
     106    return(ok($p1,$p2));
    90107}
     108}
     109
Note: See TracChangeset for help on using the changeset viewer.