Changeset 21674 for perl5

Show
Ignore:
Timestamp:
08/01/08 14:10:29 (4 months ago)
Author:
fglock
Message:

[v6.pm] more tests # 6600

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

Legend:

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

    r21664 r21674  
    149149t/regex/from_perl6_rules/properties-08.t 
    150150t/regex/from_perl6_rules/properties-09.t 
     151# t/regex/nonstrings.t 
    151152t/regex/p6regex/p6regex.t 
    152153t/regex/p6regex/regex_tests 
     
    163164t/regex/smartparse.t 
    164165t/spec/S02-builtin_data_types/array_extending.t 
     166t/spec/S02-builtin_data_types/flattening.t 
    165167t/spec/S02-builtin_data_types/nested_arrays.t 
     168t/spec/S02-literals/autoref.t 
    166169# t/spec/S03-operators/assign.t 
    167170t/spec/S04-statements/do.t 
  • perl5/Pugs-Compiler-Perl6/Makefile.PL

    r21664 r21674  
    143143        $text =~ s/^\s*force_todo.*?\n/force_todo(18,34,40,51,57,66,67);\n/m; 
    144144    } 
     145    if ( $out eq 't/spec/S02-builtin_data_types/flattening.t' ) { 
     146        $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(4,9,12..15);/m; 
     147    } 
     148    if ( $out eq 't/spec/S02-literals/autoref.t' ) { 
     149        $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(9,53..57);/m; 
     150    } 
     151    if ( $out eq 't/spec/S03-operators/assign.t' ) { 
     152        # my @z = ($::('Foo::b')... 
     153        $text =~ s/^(\s+)my \@z = (\(\$::\(\'Foo::b\'\))/$1my \@z = undef; # TODO namespace problem ... = $2/m; 
     154        $text =~ s/^(\s+)([^\n]*?lhs treats \$::\(\'Foo::b\'\))/$1Test::ok( 0, "skip", :todo ); # $2/mg; 
     155    } 
    145156    if ( $out eq 't/spec/S04-statements/do.t' ) { 
    146157        $text = "force_todo(1..6,10,11,20..22);\n" . $text;   
    147158        # redo works in perl5 blocks 
    148159        $text =~ s/^([^\n]*?\; *redo\;)/ok( 0, "redo works in perl5 blocks", :todo ) ; # $1/mg; 
    149     } 
    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; 
    154160    } 
    155161