Module: tools Branch: master Commit: 00706cbcb7f473524d043abb49392f469c21b552 URL: http://source.winehq.org/git/tools.git/?a=commit;h=00706cbcb7f473524d043abb4...
Author: Alexandre Julliard julliard@winehq.org Date: Wed May 25 14:30:07 2011 +0200
winetest: Create separate groups for the different Wine hosts.
---
winetest/build-index | 7 ++++++- winetest/gather | 9 +++++++-- 2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/winetest/build-index b/winetest/build-index index 4e2f42f..9a1c97c 100755 --- a/winetest/build-index +++ b/winetest/build-index @@ -29,10 +29,15 @@ my %vista = (name => "Vista"); my %w2k8 = (name => "2008"); my %win7 = (name => "Win7"); my %unknown = (name => "Other"); +my %linux = (name => "Linux"); +my %mac = (name => "Mac"); +my %bsd = (name => "BSD"); +my %solaris = (name => "Solaris"); my %wine = (name => "Wine");
# Define the order of version groups in the summary -my @groups = (%w95, %w98, %me, %nt3, %nt4, %w2k, %xp, %w2k3, %vista, %w2k8, %win7, %unknown, %wine); +my @groups = (%w95, %w98, %me, %nt3, %nt4, %w2k, %xp, %w2k3, %vista, %w2k8, %win7, + %unknown, %linux, %mac, %bsd, %solaris, %wine);
my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
diff --git a/winetest/gather b/winetest/gather index 3ce627a..24fee0e 100755 --- a/winetest/gather +++ b/winetest/gather @@ -96,15 +96,20 @@ my %vista = (name => "Vista"); my %w2k8 = (name => "2008"); my %win7 = (name => "Win7"); my %unknown = (name => "Other"); +my %linux = (name => "Linux"); +my %mac = (name => "Mac"); +my %bsd = (name => "BSD"); +my %solaris = (name => "Solaris"); my %wine = (name => "Wine");
# Map dissect's IDs to the above hashes my %idmap = (95=>%w95, 98=>%w98, me=>%me, nt3=>%nt3, nt4=>%nt4, 2000=>%w2k, xp=>%xp, 2003=>%w2k3, vista=>%vista, 2008=>%w2k8, win7=>%win7, unknown=>%unknown, - wine=>%wine, linux=>%wine, mac=>%wine, bsd=>%wine, solaris=>%wine); + wine=>%wine, linux=>%linux, mac=>%mac, bsd=>%bsd, solaris=>%solaris);
# Define the order of version groups in the summary -my @groups = (%w95, %w98, %me, %nt3, %nt4, %w2k, %xp, %w2k3, %vista, %w2k8, %win7, %unknown, %wine); +my @groups = (%w95, %w98, %me, %nt3, %nt4, %w2k, %xp, %w2k3, %vista, %w2k8, %win7, + %unknown, %linux, %mac, %bsd, %solaris, %wine);
my ($outdated,undef) = glob "$datadir/*/outdated"; exit 2 unless defined $outdated;