Fix the test

This commit is contained in:
Eelco Dolstra
2011-11-30 18:03:50 +01:00
parent 82d17a2d0b
commit dd6e5d49ba
3 changed files with 9 additions and 9 deletions

View File

@ -59,14 +59,14 @@ sub createJobsetWithOneInput {
sub evalSucceeds {
my ($jobset) = @_;
my $res = captureStdoutStderr(60, ("../src/script/hydra_evaluator.pl", $jobset->project->name, $jobset->name));
my $res = captureStdoutStderr(60, ("../src/script/hydra-evaluator", $jobset->project->name, $jobset->name));
print STDERR "Evaluation errors for jobset ".$jobset->project->name.":".$jobset->name.": \n".$jobset->errormsg."\n" if $jobset->errormsg;
return $res;
}
sub runBuild {
my ($build) = @_;
return captureStdoutStderr(60, ("../src/script/hydra_build.pl", $build->id));
return captureStdoutStderr(60, ("../src/script/hydra-build", $build->id));
}
1;