Module: tools
Branch: master
Commit: 73912a3cd7a214f89230ddfeb7ee9640edee15b9
URL: https://source.winehq.org/git/tools.git/?a=commit;h=73912a3cd7a214f89230ddf…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Tue Sep 17 12:33:37 2019 +0200
testbot/CheckForWinetestUpdate: Clean up handling of the 'other' VMs.
The job is called 'WineTest: other VMs' so calling the corresponding
option 'other32' is clearer.
Also, setting $BaseJob to 'other' when appropriate simplifies building
the job description.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/bin/CheckForWinetestUpdate.pl | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/testbot/bin/CheckForWinetestUpdate.pl b/testbot/bin/CheckForWinetestUpdate.pl
index 590226c..b4672a7 100755
--- a/testbot/bin/CheckForWinetestUpdate.pl
+++ b/testbot/bin/CheckForWinetestUpdate.pl
@@ -67,7 +67,7 @@ my %WineTestUrls = (
my %TaskTypes = (build => "Update and rebuild Wine on the build VMs.",
base32 => "Run WineTest on the 32 bit Windows VMs with the 'base' role.",
- winetest32 => "Run WineTest on the 32 bit Windows VMs with the 'winetest' role.",
+ other32 => "Run WineTest on the 32 bit Windows VMs with the 'winetest' role.",
all64 => "Run WineTest on the all the 64 bit Windows VMs.",
wine => "Update, rebuild and run WineTest on the Wine VMs.");
@@ -171,7 +171,7 @@ sub AddJob($$$)
{
my ($BaseJob, $LatestBaseName, $Build) = @_;
- my $Remarks = ($Build eq "exe64" ? "64-bit" : $BaseJob ? "base" : "other");
+ my $Remarks = $Build eq "exe64" ? "64-bit" : $BaseJob;
$Remarks = "WineTest: $Remarks VMs";
Debug("Creating the '$Remarks' job\n");
@@ -181,7 +181,7 @@ sub AddJob($$$)
$VMs->AddFilter("Type", ["win64"]);
$VMs->AddFilter("Role", ["base", "winetest"]);
}
- elsif ($BaseJob)
+ elsif ($BaseJob eq "base")
{
$VMs->AddFilter("Type", ["win32", "win64"]);
$VMs->AddFilter("Role", ["base"]);
@@ -202,7 +202,7 @@ sub AddJob($$$)
my $Jobs = CreateJobs();
my $NewJob = $Jobs->Add();
$NewJob->User(GetBatchUser());
- $NewJob->Priority($BaseJob && $Build eq "exe32" ? 8 : 9);
+ $NewJob->Priority($BaseJob eq "base" and $Build eq "exe32" ? 8 : 9);
$NewJob->Remarks($Remarks);
# Add a task for each VM
@@ -458,7 +458,7 @@ if (defined $Usage)
#
my $Rc = 0;
-if ($OptTypes{build} or $OptTypes{base32} or $OptTypes{winetest32} or
+if ($OptTypes{build} or $OptTypes{base32} or $OptTypes{other32} or
$OptTypes{wine})
{
my ($Create, $LatestBaseName) = UpdateWineTest($OptCreate, "exe32");
@@ -473,7 +473,7 @@ if ($OptTypes{build} or $OptTypes{base32} or $OptTypes{winetest32} or
# arbitrarily do it only for 32-bit executables to avoid redundant updates.
$Rc = 1 if ($OptTypes{build} and !AddReconfigJob("build"));
$Rc = 1 if ($OptTypes{base32} and !AddJob("base", $LatestBaseName, "exe32"));
- $Rc = 1 if ($OptTypes{winetest32} and !AddJob("", $LatestBaseName, "exe32"));
+ $Rc = 1 if ($OptTypes{other32} and !AddJob("other", $LatestBaseName, "exe32"));
$Rc = 1 if ($OptTypes{wine} and !AddReconfigJob("wine"));
}
Module: wine
Branch: master
Commit: bcd111dd5f91931d56077fb15398dfcd491a280d
URL: https://source.winehq.org/git/wine.git/?a=commit;h=bcd111dd5f91931d56077fb1…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Mon Sep 16 15:59:06 2019 +0200
glu32: Fix the spelling of some comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/glu32/sweep.c | 4 ++--
dlls/glu32/tess.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/glu32/sweep.c b/dlls/glu32/sweep.c
index a909e2be33..0bfc9335cb 100644
--- a/dlls/glu32/sweep.c
+++ b/dlls/glu32/sweep.c
@@ -542,7 +542,7 @@ static void CallCombine( GLUtesselator *tess, GLUvertex *isect,
static void SpliceMergeVertices( GLUtesselator *tess, GLUhalfEdge *e1,
GLUhalfEdge *e2 )
/*
- * Two vertices with idential coordinates are combined into one.
+ * Two vertices with identical coordinates are combined into one.
* e1->Org is kept, while e2->Org is discarded.
*/
{
@@ -1045,7 +1045,7 @@ static void ConnectRightVertex( GLUtesselator *tess, ActiveRegion *regUp,
static void ConnectLeftDegenerate( GLUtesselator *tess,
ActiveRegion *regUp, GLUvertex *vEvent )
/*
- * The event vertex lies exacty on an already-processed edge or vertex.
+ * The event vertex lies exactly on an already-processed edge or vertex.
* Adding the new vertex involves splicing it into the already-processed
* part of the mesh.
*/
diff --git a/dlls/glu32/tess.c b/dlls/glu32/tess.c
index a1bca2e158..6e72d1e3ef 100644
--- a/dlls/glu32/tess.c
+++ b/dlls/glu32/tess.c
@@ -192,7 +192,7 @@ static void CheckOrientation( GLUtesselator *tess )
/* The "feature merging" is not intended to be complete. There are
* special cases where edges are nearly parallel to the sweep line
* which are not implemented. The algorithm should still behave
- * robustly (ie. produce a reasonable tesselation) in the presence
+ * robustly (ie. produce a reasonable tessellation) in the presence
* of such edges, however it may miss features which could have been
* merged. We could minimize this effect by choosing the sweep line
* direction to be something unusual (ie. not parallel to one of the