Changeset 91
- Timestamp:
- 08/17/06 00:39:55 (2 years ago)
- Files:
-
- trunk/lib/TheSchwartz/Worker.pm (modified) (1 diff)
- trunk/t/lib/db-common.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/TheSchwartz/Worker.pm
r84 r91 31 31 my $cjob = $client->current_job; 32 32 if ($@) { 33 # TODO: log $@ to syslog/etc 33 34 $cjob->failed($@); 34 35 } trunk/t/lib/db-common.pl
r75 r91 34 34 SKIP: { 35 35 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; 37 38 $code->(); 38 39 }
