- Timestamp:
- 08/01/08 14:10:29 (4 months ago)
- Location:
- perl5/Pugs-Compiler-Perl6
- Files:
-
- 2 modified
-
MANIFEST (modified) (2 diffs)
-
Makefile.PL (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
perl5/Pugs-Compiler-Perl6/MANIFEST
r21664 r21674 149 149 t/regex/from_perl6_rules/properties-08.t 150 150 t/regex/from_perl6_rules/properties-09.t 151 # t/regex/nonstrings.t 151 152 t/regex/p6regex/p6regex.t 152 153 t/regex/p6regex/regex_tests … … 163 164 t/regex/smartparse.t 164 165 t/spec/S02-builtin_data_types/array_extending.t 166 t/spec/S02-builtin_data_types/flattening.t 165 167 t/spec/S02-builtin_data_types/nested_arrays.t 168 t/spec/S02-literals/autoref.t 166 169 # t/spec/S03-operators/assign.t 167 170 t/spec/S04-statements/do.t -
perl5/Pugs-Compiler-Perl6/Makefile.PL
r21664 r21674 143 143 $text =~ s/^\s*force_todo.*?\n/force_todo(18,34,40,51,57,66,67);\n/m; 144 144 } 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 } 145 156 if ( $out eq 't/spec/S04-statements/do.t' ) { 146 157 $text = "force_todo(1..6,10,11,20..22);\n" . $text; 147 158 # redo works in perl5 blocks 148 159 $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;154 160 } 155 161
