Module: tools
Branch: master
Commit: e3d8d807d302eef71cd94f9f0de3e92ec640cec6
URL: https://source.winehq.org/git/tools.git/?a=commit;h=e3d8d807d302eef71cd94f9…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Fri Nov 23 16:25:58 2018 +0100
testbot: Log $LANG before running the tests.
It is useful to know the exact locale the tests were run with,
particularly since the TestBot may have modified it to add the
codeset.
In particular this helps diagnosis in case Wine does not recognize
the locale (i.e. if WineTest still shows 0409).
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/build/WineTest.pl | 1 +
1 file changed, 1 insertion(+)
diff --git a/testbot/bin/build/WineTest.pl b/testbot/bin/build/WineTest.pl
index 1f083c2..23da718 100755
--- a/testbot/bin/build/WineTest.pl
+++ b/testbot/bin/build/WineTest.pl
@@ -86,6 +86,7 @@ sub SetupTest($$)
my $BaseName = SetupWineEnvironment($Mission);
InfoMsg "\nRunning $Test in the $BaseName Wine\n";
+ InfoMsg "LANG=$ENV{LANG}\n";
return $BaseName;
}
Module: tools
Branch: master
Commit: f849bddb5f67e19f8a917b59ce6182888f82813a
URL: https://source.winehq.org/git/tools.git/?a=commit;h=f849bddb5f67e19f8a917b5…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Fri Nov 23 16:23:14 2018 +0100
testbot/web: Fix the check for which log to show in full.
The name of the current log has been decoded so it should not be
compared to a uri_escape()'d log filename.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/web/JobDetails.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl
index 9ab5006..6c8c7ce 100644
--- a/testbot/web/JobDetails.pl
+++ b/testbot/web/JobDetails.pl
@@ -247,7 +247,7 @@ sub InitMoreInfo($)
foreach my $Log (@{GetLogFileNames($TaskDir, 1)})
{
push @{$More->{$Key}->{Logs}}, $Log;
- $More->{$Key}->{Full} = $Log if (uri_escape($Log) eq $Value);
+ $More->{$Key}->{Full} = $Log if ($Log eq $Value);
}
$More->{$Key}->{Full} ||= "";
}