[Tools] winetest/dissect: Fix the XP, 2003 and Windows 10 platform detection.

Francois Gouget fgouget at codeweavers.com
Wed Mar 29 07:31:54 CDT 2017


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---

To fix the classification of the existing reports I suggest the 
following:

  for d in data/*/unknown_*;do mv $d queue/rep`echo $d | sed -e s%/%-%g`; done
  winetest.cron

 winetest/dissect | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/winetest/dissect b/winetest/dissect
index 3082d9da..1005af59 100755
--- a/winetest/dissect
+++ b/winetest/dissect
@@ -180,14 +180,15 @@ my @idmatch = (
     [ "nt3",         2,     3,    51,  undef,  1 ],
     [ "2000",        2,     5,     0,  undef,  1 ],
     [ "xp",          2,     5,     1,      1,  0 ],
-    [ "2003",        2,     5,     1,  undef,  0 ],
+    [ "xp",          2,     5,     2,      1,  0 ],
+    [ "2003",        2,     5,     2,  undef,  0 ],
     [ "vista",       2,     6,     0,      1,  0 ],
     [ "2008",        2,     6,     0,      3,  0 ],
     [ "win7",        2,     6,     1,      1,  0 ],
     [ "2008",        2,     6,     1,      3,  0 ],
     [ "win8",        2,     6,     2,  undef,  0 ],
     [ "win8",        2,     6,     3,  undef,  0 ],
-    [ "win10",       2,    10,     1,  undef,  0 ],
+    [ "win10",       2,    10,     0,      1,  0 ],
 #   [ "ce",          3, undef, undef,  undef,  0 ],
     [ "unknown",     2, undef, undef,  undef,  0 ],
     [ "unknown", undef, undef, undef,  undef,  1 ],
-- 
2.11.0



More information about the wine-patches mailing list