Module: tools Branch: master Commit: d1dbbfc9d7bee8ddd0d1ccf3d8201f97fdad66bf URL: http://source.winehq.org/git/tools.git/?a=commit;h=d1dbbfc9d7bee8ddd0d1ccf3d...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Oct 25 18:35:17 2012 +0200
testbot/lib: Standardize a few LogMsg statements.
---
testbot/lib/WineTestBot/TestAgent.pm | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/testbot/lib/WineTestBot/TestAgent.pm b/testbot/lib/WineTestBot/TestAgent.pm index 7b6eb56..f2fa888 100644 --- a/testbot/lib/WineTestBot/TestAgent.pm +++ b/testbot/lib/WineTestBot/TestAgent.pm @@ -138,7 +138,7 @@ sub _Copy($$) sub SendFile($$$) { my ($Hostname, $HostPathName, $GuestPathName) = @_; - LogMsg("SendFile $HostPathName -> $Hostname $GuestPathName\n"); + LogMsg "SendFile $HostPathName -> $Hostname $GuestPathName\n";
my $fh; if (!open($fh, "<", $HostPathName)) @@ -171,7 +171,7 @@ sub SendFile($$$) sub GetFile($$$) { my ($Hostname, $GuestPathName, $HostPathName) = @_; - LogMsg("GetFile $Hostname $GuestPathName -> $HostPathName\n"); + LogMsg "GetFile $Hostname $GuestPathName -> $HostPathName\n";
my $fh; if (!open($fh, ">", $HostPathName)) @@ -227,7 +227,7 @@ sub GetFile($$$) sub RunScript($$$) { my ($Hostname, $ScriptText, $Timeout) = @_; - LogMsg("RunScript $Hostname ", ($Timeout || 0), " [$ScriptText]\n"); + LogMsg "RunScript $Hostname ", ($Timeout || 0), " [$ScriptText]\n";
my $Err; my $nc = _Connect($Hostname);