Changeset 21664 for perl5

Show
Ignore:
Timestamp:
08/01/08 13:21:45 (5 months ago)
Author:
fglock
Message:

[v6.pm] more tests # 6500

Location:
perl5/Pugs-Compiler-Perl6
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • perl5/Pugs-Compiler-Perl6/MANIFEST

    r21650 r21664  
    152152t/regex/p6regex/regex_tests 
    153153t/regex/perl5_1.t 
    154 # t/regex/perl5_2.t 
    155 # t/regex/perl5_3.t 
    156 # t/regex/perl5_4.t 
     154t/regex/perl5_2.t 
     155t/regex/perl5_3.t 
     156t/regex/perl5_4.t 
    157157t/regex/perl5_5.t 
    158158t/regex/perl5_6.t 
     
    164164t/spec/S02-builtin_data_types/array_extending.t 
    165165t/spec/S02-builtin_data_types/nested_arrays.t 
     166# t/spec/S03-operators/assign.t 
    166167t/spec/S04-statements/do.t 
    167168t/spec/S04-statements/until.t 
  • perl5/Pugs-Compiler-Perl6/Makefile.PL

    r21663 r21664  
    148148        $text =~ s/^([^\n]*?\; *redo\;)/ok( 0, "redo works in perl5 blocks", :todo ) ; # $1/mg; 
    149149    } 
     150    if ( $out eq 't/spec/S03-operators/assign.t' ) { 
     151        # my @z = ($::('Foo::b')... 
     152        $text =~ s/^(\s+)my \@z = (\(\$::\(\'Foo::b\'\))/$1my \@z = undef; # TODO namespace problem ... = $2/m; 
     153        $text =~ s/^(\s+)([^\n]*?lhs treats \$::\(\'Foo::b\'\))/$1Test::ok( 0, "skip", :todo ); # $2/mg; 
     154    } 
    150155     
    151156    # add "use Test" to most files