Module: tools
Branch: master
Commit: 9663f8a8e2519a037cc1d215a2bb39cad1c0a3e4
URL: http://source.winehq.org/git/tools.git/?a=commit;h=9663f8a8e2519a037cc1d215…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Mon Aug 27 11:51:05 2012 +0200
testbot: web: Fix a couple of links to the registration page.
---
testbot/web/ForgotPassword.pl | 2 +-
testbot/web/ResetPassword.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbot/web/ForgotPassword.pl b/testbot/web/ForgotPassword.pl
index 7a8b0a5..732747a 100644
--- a/testbot/web/ForgotPassword.pl
+++ b/testbot/web/ForgotPassword.pl
@@ -50,7 +50,7 @@ sub GetHeaderText
{
return "Please enter your username or your email address<br>\n" .
"If you don't have an account yet, you can " .
- "<a href='Register.php'>register</a> for one.";
+ "<a href='Register.pl'>register</a> for one.";
}
sub GetActions
diff --git a/testbot/web/ResetPassword.pl b/testbot/web/ResetPassword.pl
index e8a2f2e..caaadcc 100644
--- a/testbot/web/ResetPassword.pl
+++ b/testbot/web/ResetPassword.pl
@@ -52,7 +52,7 @@ sub GetTitle
sub GetHeaderText
{
return "If you don't have an account yet, you can " .
- "<a href='Register.php'>register</a> for one.";
+ "<a href='Register.pl'>register</a> for one.";
}
sub GetInputType
Module: tools
Branch: master
Commit: 5ec3208c3cd6f77729afb357222e7c106d3e7855
URL: http://source.winehq.org/git/tools.git/?a=commit;h=5ec3208c3cd6f77729afb357…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Mon Aug 27 11:49:09 2012 +0200
testbot: Assorted spelling fixes.
---
testbot/lib/WineTestBot/Patches.pm | 2 +-
testbot/lib/WineTestBot/Steps.pm | 2 +-
testbot/src/TestLauncher/TestLauncher.c | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/testbot/lib/WineTestBot/Patches.pm b/testbot/lib/WineTestBot/Patches.pm
index 12e03eb..49bfbf0 100644
--- a/testbot/lib/WineTestBot/Patches.pm
+++ b/testbot/lib/WineTestBot/Patches.pm
@@ -310,7 +310,7 @@ BEGIN
$PropertyDescriptors[3] =
CreateBasicPropertyDescriptor("FromName", "Author", !1, !1, "A", 40);
$PropertyDescriptors[4] =
- CreateBasicPropertyDescriptor("FromEMail", "Email address author", !1, !1, "A", 40);
+ CreateBasicPropertyDescriptor("FromEMail", "Author's email address", !1, !1, "A", 40);
$PropertyDescriptors[5] =
CreateBasicPropertyDescriptor("Subject", "Subject", !1, !1, "A", 120);
$PropertyDescriptors[6] =
diff --git a/testbot/lib/WineTestBot/Steps.pm b/testbot/lib/WineTestBot/Steps.pm
index 74dd059..74cfa79 100644
--- a/testbot/lib/WineTestBot/Steps.pm
+++ b/testbot/lib/WineTestBot/Steps.pm
@@ -116,7 +116,7 @@ BEGIN
$PropertyDescriptors[6] =
CreateBasicPropertyDescriptor("DebugLevel", "Debug level (WINETEST_DEBUG)", !1, 1, "N", 2);
$PropertyDescriptors[7] =
- CreateBasicPropertyDescriptor("ReportSuccessfulTests", "Report successfull tests (WINETEST_REPORT_SUCCESS)", !1, 1, "B", 1);
+ CreateBasicPropertyDescriptor("ReportSuccessfulTests", "Report successful tests (WINETEST_REPORT_SUCCESS)", !1, 1, "B", 1);
$PropertyDescriptors[8] =
CreateDetailrefPropertyDescriptor("Tasks", "Tasks", !1, !1, \&CreateTasks);
}
diff --git a/testbot/src/TestLauncher/TestLauncher.c b/testbot/src/TestLauncher/TestLauncher.c
index f8323b4..802ba89 100644
--- a/testbot/src/TestLauncher/TestLauncher.c
+++ b/testbot/src/TestLauncher/TestLauncher.c
@@ -59,13 +59,13 @@ static BOOL DllPresent(char *DllName)
* dismissed.
* This can happen when running tests for a system DLL on a Windows version which does not include
* that DLL. It messes up our testing because the child just hangs around until the timeout expires,
- * taking up testing time and generating an timeout error.
+ * taking up testing time and generating a timeout error.
* Since the message is produced by the child process before any application code is run, we can't
* suppress it using SetErrorMode() or ProcessDefaultHardErrorMode. It is possible to suppress using
* the registry value ErrorMode in HKEY_LOCAL_MACHINE\CurrentControlSet\Control\Windows but that has
* a global effect.
- * So instead we just dive into the executables import table, determine which modules are being
- * imported and check if these are present.
+ * So instead we just dive into the executable's import table, determine which modules are being
+ * imported and check if they are present.
*/
static BOOL AllImportedDllsPresent(char *TestExeName)
{