Module: tools Branch: master Commit: f95615cd47ebf0c7e5f056446e8d52e6b8d995e6 URL: http://source.winehq.org/git/tools.git/?a=commit;h=f95615cd47ebf0c7e5f056446...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Feb 25 15:22:46 2009 +0100
winetest: Don't add the emulated version to the tag for Wine runs, it's not useful information.
---
winetest/dissect | 1 - winetest/gather | 4 ---- 2 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect index a9b64dc..657ef9b 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -180,7 +180,6 @@ if ($plid==1 && $major==4) { $version = "ce$major$minor"; } if ($wine) { - $tag = "_$version$tag"; $version = "wine"; } if ($wine_build) { diff --git a/winetest/gather b/winetest/gather index 6d40787..bbe7cc0 100755 --- a/winetest/gather +++ b/winetest/gather @@ -116,10 +116,6 @@ foreach my $file (glob "$datadir/$build/*/summary.txt") { (my $dir = $file) =~ s|^\Q$datadir/$build\E/(.*?)/summary.txt$|$1|; (my $id, my @tag) = split /_/, $dir; my $group = $idmap{$id}; - if ($id eq "wine" && defined $tag[0]) { - $tag[0] = $idmap{$tag[0]}->{name}; - $group = undef unless defined $tag[0]; # make the check below fail - } if (!defined $group) { print STDERR "$name0:error: unknown architecture '$id' in '$file'\n"; next;