Changeset 91

Show
Ignore:
Timestamp:
08/17/06 00:39:55 (2 years ago)
Author:
bradfitz
Message:

misc stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/TheSchwartz/Worker.pm

    r84 r91  
    3131    my $cjob = $client->current_job; 
    3232    if ($@) { 
     33        # TODO: log $@ to syslog/etc 
    3334        $cjob->failed($@); 
    3435    } 
  • trunk/t/lib/db-common.pl

    r75 r91  
    3434  SKIP: { 
    3535      my $rv = eval "use DBD::SQLite; 1"; 
    36       skip "SQLite not installed", $n if $@; 
     36      $rv = 0 if $ENV{SKIP_SQLITE}; 
     37      skip "SQLite not installed", $n if !$rv; 
    3738      $code->(); 
    3839  }