- Timestamp:
- 08/01/08 15:01:57 (5 months ago)
- Location:
- perl5/Pugs-Compiler-Perl6
- Files:
-
- 2 modified
-
MANIFEST (modified) (4 diffs)
-
Makefile.PL (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perl5/Pugs-Compiler-Perl6/MANIFEST
r21674 r21691 117 117 t/examples/golf.t 118 118 t/oo/roles/instantiation.t 119 t/operators/auto.t 119 120 t/operators/brainos.t 120 121 t/operators/relational.t … … 149 150 t/regex/from_perl6_rules/properties-08.t 150 151 t/regex/from_perl6_rules/properties-09.t 152 t/regex/from_perl6_rules/stdrules.t 151 153 # t/regex/nonstrings.t 152 154 t/regex/p6regex/p6regex.t … … 186 188 t/statements/until.t 187 189 t/statements/values_in_bool_context.t 190 188 191 t/syntax/lf_in_list.t 189 192 t/syntax/parsing/braces_in_rules.t … … 193 196 t/syntax/parsing/pod_in_multi_line_exprs.t 194 197 t/syntax/parsing/postfix_if_and_is.t 198 t/syntax/parsing/sub_calls.t 199 t/syntax/parsing/subscript.t 200 195 201 t/syntax/single_quoted_strings.t 202 203 t/unspecced/async.t 204 t/unspecced/eval_yaml.t 205 t/unspecced/tailcall.t 206 196 207 t/var/lvalue_deep_brackets.t 197 208 t/var/passing_the_pair_class_to_a_sub.t 209 198 210 t/xx-uncategorized/empty_kwid.t 199 211 t/xx-uncategorized/lexical-array-in-inner-block.t -
perl5/Pugs-Compiler-Perl6/Makefile.PL
r21674 r21691 51 51 # fix problems caused by splitting; update the "todo" lists 52 52 53 54 if ( $out eq 't/operators/auto.t' ) { 55 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(39..43);/m; 56 } 53 57 if ( $out eq 't/regex/from_perl6_rules/named_chars-00.t' ) { 54 58 my $cpan_tester_errors = "148, 149, 158, 160"; … … 130 134 131 135 } 136 if ( $out eq 't/regex/from_perl6_rules/stdrules.t' ) { 137 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(4,7,10);/m; 138 } 132 139 if ( $out eq 't/regex/p6regex/p6regex.t' ) { 133 140 my $cpan_tester_errors = ', 31..32, 36, 114..115, 117, 121..122, 124, 129..130,
