/[Frey]/trunk/lib/Frey/Test/Runner.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Test/Runner.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 672 by dpavlin, Fri Nov 28 16:45:35 2008 UTC revision 673 by dpavlin, Tue Dec 2 01:49:25 2008 UTC
# Line 63  has test_because => ( Line 63  has test_because => (
63  sub as_markup {  sub as_markup {
64          my ($self) = @_;          my ($self) = @_;
65    
66    =for later
67    
68          my $path = 'var/test/';          my $path = 'var/test/';
69          my $running_pid = "$path/running.pid";          my $running_pid = "$path/running.pid";
70    
71          my $pid = read_file $running_pid if -e $running_pid;          my $pid = read_file $running_pid if -e $running_pid;
72          if ( $pid ) {          if ( $pid ) {
73                  if ( kill 0, $pid ) {                  if ( kill 0, $pid ) {
74                          warn "ABORTING: $self started twice";                          warn "ABORTING: $self allready running as pid $pid";
75                          return 'abort';                          return 'abort';
76                  } else {                  } else {
77                          warn "got $pid from $running_pid but no process alive, ignoring...";                          warn "got $pid from $running_pid but no process alive, ignoring...";
# Line 79  sub as_markup { Line 81  sub as_markup {
81          write_file( $running_pid, $$ );          write_file( $running_pid, $$ );
82          warn "# started $self with pid $$ -> $running_pid";          warn "# started $self with pid $$ -> $running_pid";
83    
84    =cut
85    
86          my $f = TAP::Formatter::HTML->new({          my $f = TAP::Formatter::HTML->new({
87  #               silent => 1,  #               silent => 1,
88    
# Line 169  sub as_markup { Line 173  sub as_markup {
173    
174          $self->add_icon( $1 ) if $html =~ m{class="(passed|failed)"};          $self->add_icon( $1 ) if $html =~ m{class="(passed|failed)"};
175    
176    =for later
177    
178          unlink $running_pid or die "can't remove $running_pid: $!";          unlink $running_pid or die "can't remove $running_pid: $!";
179    
180    =cut
181    
182          return $html;          return $html;
183  }  }
184    

Legend:
Removed from v.672  
changed lines
  Added in v.673

  ViewVC Help
Powered by ViewVC 1.1.26