Bug 1264325 -talos: allow running on windows 8.1/10 with python 2.7.11. r=jmaher

--HG--
extra : rebase_source : 76b19d3b0a13c6a3e8b10603c336d11a31595daf
This commit is contained in:
Avi Halachmi 2016-05-24 21:04:43 +03:00
Родитель 7868d3f110
Коммит f48bb12849
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -33,6 +33,12 @@ def _get_platform():
return 'w7_'
elif '6.2' in platform.version(): # w8
return 'w8_'
# Bug 1264325 - FIXME: with python 2.7.11: reports win8 instead of 8.1
elif '6.3' in platform.version():
return 'w8_'
# Bug 1264325 - FIXME: with python 2.7.11: reports win8 instead of 10
elif '10.0' in platform.version():
return 'w8_'
else:
raise TalosError('unsupported windows version')
elif platform.system() == "Darwin":