Module: tools Branch: master Commit: 4dcf0a099e760a29bfbb4a2d36a657b8ac861e7d URL: http://source.winehq.org/git/tools.git/?a=commit;h=4dcf0a099e760a29bfbb4a2d3...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Oct 22 12:13:55 2012 +0200
testbot/bin: A few small spelling fixes.
---
testbot/bin/Engine.pl | 4 ++-- testbot/bin/WineRunTask.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/testbot/bin/Engine.pl b/testbot/bin/Engine.pl index 8723c9e..b97402b 100755 --- a/testbot/bin/Engine.pl +++ b/testbot/bin/Engine.pl @@ -64,7 +64,7 @@ sub HandleJobSubmit my $Job = $Jobs->GetItem($JobKey); if (! $Job) { - LogMsg "Engine: JobSubmit for non-existing job $JobKey\n"; + LogMsg "Engine: JobSubmit for nonexistent job $JobKey\n"; return "0Job $JobKey not found"; } # We've already determined that JobKey is valid, untaint it @@ -141,7 +141,7 @@ sub HandleJobCancel my $Job = CreateJobs()->GetItem($JobKey); if (! $Job) { - LogMsg "Engine: JobCancel for non-existing job $JobKey\n"; + LogMsg "Engine: JobCancel for nonexistent job $JobKey\n"; return "0Job $JobKey not found"; } # We've already determined that JobKey is valid, untaint it diff --git a/testbot/bin/WineRunTask.pl b/testbot/bin/WineRunTask.pl index 430c842..94cb265 100755 --- a/testbot/bin/WineRunTask.pl +++ b/testbot/bin/WineRunTask.pl @@ -250,7 +250,7 @@ if (defined($ErrMessage)) my $FileType = $Step->FileType; if ($FileType ne "exe32" && $FileType ne "exe64") { - FatalError "Unexpectd file type $FileType found\n", + FatalError "Unexpected file type $FileType found\n", $FullErrFileName, $Job, $Step, $Task; } my $FileName = $Step->FileName;