Revision 29661

Date:
2008/07/22 01:23:46
Author:
jkeenan
Revision Log:
Revert to previous version due to unintentional commit of several lines.
Files:

Legend:

 
Added
 
Removed
 
Modified
  • trunk/lib/Parrot/Configure/Options/Test.pm

     
    85 85 my $self = shift;
    86 86 my @preconfiguration_tests = @_;
    87 87 if ( $self->get_run('run_configure_tests') ) {
    88 my $start = time();
    89 88 print "As you requested, we'll start with some tests of the configuration tools.\n\n";
    90 89
    91 90 runtests(@preconfiguration_tests) or die
     
    96 95 Parrot's configuration tools will work as intended.
    97 96
    98 97 TEST
    99 my $end =time();
    100 print scalar(@preconfiguration_tests),
    101 " t/configure and t/step tests took ",
    102 ($end - $start), " seconds.\n";
    103 98 }
    104 99 return 1;
    105 100 }