Changeset 698
- Timestamp:
- 05/26/07 18:05:29 (6 years ago)
- Files:
-
- 2 modified
-
applications/shepherd (modified) (4 diffs)
-
status (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/shepherd
r697 r698 2 2 3 3 my $progname = 'shepherd'; 4 my $version = '0.4.9 3';4 my $version = '0.4.94'; 5 5 6 6 # tv_grab_au … … 543 543 &log("Testing $proggy ... ") unless ($quiet); 544 544 545 my $ldir = query_ldir($proggy, $progtype);546 545 my $progname = query_filename($proggy, $progtype); 547 546 $progname .= "-".$specific_version if ((defined $specific_version) && ($specific_version ne "")); … … 550 549 $opt_ready ||= '--version'; 551 550 552 my ($result,$resultmsg,$test_output) = call_prog($proggy, $progname." $opt_ready"." 2>&1",1,1,0 );551 my ($result,$resultmsg,$test_output) = call_prog($proggy, $progname." $opt_ready"." 2>&1",1,1,0, $progtype); 553 552 554 553 &log(1, "Return value: $result\n") unless ($quiet); … … 1138 1137 sub call_prog 1139 1138 { 1140 my ($component,$prog,$want_output,$timeout,$display_output ) = @_;1139 my ($component,$prog,$want_output,$timeout,$display_output,$progtype) = @_; 1141 1140 $timeout = 0 if (!defined $timeout); 1142 1141 $want_output = 0 if (!defined $want_output); 1143 1142 $display_output = 1 if (!defined $display_output); 1143 $progtype = $components->{$component}->{type} unless ($progtype); 1144 1144 1145 1145 my $prog_output = ""; 1146 1146 1147 chdir (query_ldir($component, $ components->{$component}->{type}));1147 chdir (query_ldir($component, $progtype)); 1148 1148 1149 1149 my $exec = sprintf "PERL5LIB=\"%s/references\" %s 2>&1|", $CWD, $prog; -
status
r697 r698 1 application shepherd 0.4.9 31 application shepherd 0.4.94 2 2 reference channel_list 2 3 3 reference Shepherd/Common.pm 0.10
