Changeset 21732 for perl5

Show
Ignore:
Timestamp:
08/02/08 13:25:41 (4 months ago)
Author:
fglock
Message:

[v6.pm] more tests # 7100

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

Legend:

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

    r21717 r21732  
    8383t/blocks/primitive_named_params.t 
    8484t/blocks/splatty_with_type.t 
     85t/builtins/math/complex_powers.t 
     86t/builtins/math/NaN.t 
    8587t/builtins/math/pi_internals.t 
     88t/builtins/my.t 
    8689t/closure_traits/exit_in_begin.t 
    8790t/examples/99problems/problem38.t 
     
    115118t/examples/99problems/problem94.t 
    116119t/examples/99problems/problem96.t 
     120t/examples/examples.t 
    117121t/examples/golf.t 
     122t/junction/array_deref.t 
     123t/magicals/inc.t 
     124t/oo/autopair_instantiation.t 
     125t/oo/can.t 
     126t/oo/class/anonymous.t 
     127t/oo/class_inheritance_become_infinite_loop.t 
     128t/oo/class_name_and_attribute_name_confliction.t 
     129t/oo/destruction.t 
     130t/oo/roles/anonymous.t 
    118131t/oo/roles/instantiation.t 
     132t/oo/roles/properties.t 
     133t/oo/traits/parameterized.t 
     134t/operators/and_precedence.t 
    119135t/operators/auto.t 
    120136t/operators/brainos.t 
     137t/operators/feed.t 
     138t/operators/lvalue.t 
    121139t/operators/relational.t 
    122140t/operators/spaceship_and_datatypes.t 
     141t/operators/subscript_adverbs.t 
    123142t/packages/reflection.t 
     143t/perl5/eval_lex.t 
    124144t/regex/from_perl6_rules/anchors.t 
     145t/regex/from_perl6_rules/combchar.t 
     146t/regex/from_perl6_rules/context.t 
    125147t/regex/from_perl6_rules/inline.t 
    126148t/regex/from_perl6_rules/named_chars-00.t 
  • perl5/Pugs-Compiler-Perl6/Makefile.PL

    r21691 r21732  
    4949    } 
    5050 
    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    } 
    5468    if ( $out eq 't/operators/auto.t' ) { 
    5569        $text =~ s/^(\s*plan \d+;)/$1\nforce_todo(39..43);/m;