Bug 1336712 - Drop test annotations and checks for Windows XP, Vista OS X < 10.9 and Android Gingerbread (2.3): testing/talos r?RyanVM draft
authorSebastian Hengst <archaeopteryx@coole-files.de>
Sat, 04 Feb 2017 13:47:33 +0100
changeset 478969 ec5148f280e4684b9b4010e295684f3aa0bb871d
parent 478968 4732306659e0b94457268a5fc199a7a4270229cd
child 478970 5b218bf92825e1c5bde22d1c7565ce57a9474a67
push id44108
push userarchaeopteryx@coole-files.de
push dateSat, 04 Feb 2017 12:49:41 +0000
reviewersRyanVM
bugs1336712
milestone54.0a1
Bug 1336712 - Drop test annotations and checks for Windows XP, Vista OS X < 10.9 and Android Gingerbread (2.3): testing/talos r?RyanVM MozReview-Commit-ID: 8WwibE50Cer
testing/talos/talos/tests/video/video_playback.html
testing/talos/talos/utils.py
--- a/testing/talos/talos/tests/video/video_playback.html
+++ b/testing/talos/talos/tests/video/video_playback.html
@@ -40,20 +40,16 @@ function fullscreen(event) {
       document.mozFullScreen) {
     startTest();
   } else {
     nextTest();
   }
 }
 
 function runTest() {
-  // Windows XP cannot play mp4 clip due to the lack of gmp-eme-plugin, so skip it.
-  if (window.navigator.oscpu == 'Windows NT 5.1' && test[testIndex].indexOf('mp4') >= 0) {
-    nextTest();
-  }
   vdo.setAttribute('src', 'clips/' + test[testIndex]);
   vdo.load();
 }
 
 function prepare() {
   if (viewMode[viewModeIndex] == 'fullscreen') {
     // Fullscreen mode
     vdo.setAttribute('width', '100%');
--- a/testing/talos/talos/utils.py
+++ b/testing/talos/talos/utils.py
@@ -22,19 +22,17 @@ LOG = get_proxy_logger()
 
 def _get_platform():
     # get the platform we're interested in. Note that the values
     # are used in TTest historically, this is why they are not really friendly.
     # TODO: give some user friendly values
     if platform.system() == "Linux":
         return 'linux_'
     elif platform.system() in ("Windows", "Microsoft"):
-        if '5.1' in platform.version():  # winxp
-            return 'win_'
-        elif '6.1' in platform.version():  # w7
+        if '6.1' in platform.version():  # w7
             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():