Module: tools Branch: master Commit: ff48f4a56c8ba389ffe55fc5711d64d269d5e40b URL: http://source.winehq.org/git/tools.git/?a=commit;h=ff48f4a56c8ba389ffe55fc57...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Mar 29 14:31:54 2017 +0200
winetest/dissect: Fix the XP, 2003 and Windows 10 platform detection.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
winetest/dissect | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect index f5e036b..141621e 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -224,14 +224,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 ],