- Timestamp:
- 08/02/08 13:25:41 (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
r21717 r21732 83 83 t/blocks/primitive_named_params.t 84 84 t/blocks/splatty_with_type.t 85 t/builtins/math/complex_powers.t 86 t/builtins/math/NaN.t 85 87 t/builtins/math/pi_internals.t 88 t/builtins/my.t 86 89 t/closure_traits/exit_in_begin.t 87 90 t/examples/99problems/problem38.t … … 115 118 t/examples/99problems/problem94.t 116 119 t/examples/99problems/problem96.t 120 t/examples/examples.t 117 121 t/examples/golf.t 122 t/junction/array_deref.t 123 t/magicals/inc.t 124 t/oo/autopair_instantiation.t 125 t/oo/can.t 126 t/oo/class/anonymous.t 127 t/oo/class_inheritance_become_infinite_loop.t 128 t/oo/class_name_and_attribute_name_confliction.t 129 t/oo/destruction.t 130 t/oo/roles/anonymous.t 118 131 t/oo/roles/instantiation.t 132 t/oo/roles/properties.t 133 t/oo/traits/parameterized.t 134 t/operators/and_precedence.t 119 135 t/operators/auto.t 120 136 t/operators/brainos.t 137 t/operators/feed.t 138 t/operators/lvalue.t 121 139 t/operators/relational.t 122 140 t/operators/spaceship_and_datatypes.t 141 t/operators/subscript_adverbs.t 123 142 t/packages/reflection.t 143 t/perl5/eval_lex.t 124 144 t/regex/from_perl6_rules/anchors.t 145 t/regex/from_perl6_rules/combchar.t 146 t/regex/from_perl6_rules/context.t 125 147 t/regex/from_perl6_rules/inline.t 126 148 t/regex/from_perl6_rules/named_chars-00.t -
perl5/Pugs-Compiler-Perl6/Makefile.PL
r21691 r21732 49 49 } 50 50 51 # fix problems caused by splitting; update the "todo" lists 52 53 51 # update the plan and "todo" lists 52 53 if ( $out eq 't/builtins/math/NaN.t' ) { 54 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(4);/m; 55 } 56 if ( $out eq 't/builtins/my.t' ) { 57 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(2,4,5,8,9,10,11);/m; 58 } 59 if ( $out eq 't/oo/class/anonymous.t' ) { 60 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(4,5);/m; 61 } 62 if ( $out eq 't/operators/and_precedence.t' ) { 63 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(4);/m; 64 } 65 if ( $out eq 't/operators/subscript_adverbs.t' ) { 66 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(6,7, 13,14, 19,20, 26,27, 33,34, 40,41,46,47, 53,54);/m; 67 } 54 68 if ( $out eq 't/operators/auto.t' ) { 55 69 $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(39..43);/m;
