Module: tools Branch: master Commit: 107f23387ed33ff37274df9638851a3e65cc6e8f URL: http://source.winehq.org/git/tools.git/?a=commit;h=107f23387ed33ff37274df963...
Author: Francois Gouget fgouget@free.fr Date: Wed Mar 26 23:39:29 2008 +0100
winetest: Anchor names should not contain spaces. Since the only problem is with NT 3 and 4, removing the space from the group name seems acceptable.
---
winetest/gather | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/winetest/gather b/winetest/gather index dc2b598..2226ba1 100755 --- a/winetest/gather +++ b/winetest/gather @@ -84,8 +84,8 @@ my $summary_version=4; my %w95 = (name => "Win95"); my %w98 = (name => "Win98"); my %me = (name => "Me"); -my %nt3 = (name => "NT 3"); -my %nt4 = (name => "NT 4"); +my %nt3 = (name => "NT3"); +my %nt4 = (name => "NT4"); my %w2k = (name => "2000"); my %xp = (name => "XP"); my %w2k3 = (name => "2003");