Bug 1306933 - Support the 'Android 4.3' prettyname alias for trychooser, r?dustin draft
authorPhil Ringnalda <philringnalda@gmail.com>
Sat, 01 Oct 2016 19:19:24 -0700
changeset 419918 3da1706ae5b973df14e6979ea5417158754aab58
parent 419917 1378de3d013b2f69f51ac916ad779638802afc4b
child 532675 bf5052e88d3ff3bc3c8c53c32ea95289b1114b9a
push id31040
push userphilringnalda@gmail.com
push dateSun, 02 Oct 2016 02:24:06 +0000
reviewersdustin
bugs1306933
milestone52.0a1
Bug 1306933 - Support the 'Android 4.3' prettyname alias for trychooser, r?dustin The trychooser website advertises 'Android 4.3' as the alias to choose Android tests in [] syntax, but without support for that in taskcluster, someone who wants both opt and debug tests would need to guess, with no support or documentation, that they should use [Android 4.3,android-4.3-arm7-api-15] MozReview-Commit-ID: 4rEKcvqAfDH
taskcluster/taskgraph/try_option_syntax.py
--- a/taskcluster/taskgraph/try_option_syntax.py
+++ b/taskcluster/taskgraph/try_option_syntax.py
@@ -121,24 +121,24 @@ UNITTEST_ALIASES = {
 # unittest platforms can be specified by substring of the "pretty name", which
 # is basically the old Buildbot builder name.  This dict has {pretty name,
 # [test_platforms]} translations, This includes only the most commonly-used
 # substrings.  This is intended only for backward-compatibility.  New test
 # platforms should have their `test_platform` spelled out fully in try syntax.
 UNITTEST_PLATFORM_PRETTY_NAMES = {
     'Ubuntu': ['linux', 'linux64'],
     'x64': ['linux64', 'linux64-asan'],
+    'Android 4.3': ['android-4.3-arm7-api-15'],
     # other commonly-used substrings for platforms not yet supported with
     # in-tree taskgraphs:
     # '10.10': [..TODO..],
     # '10.10.5': [..TODO..],
     # '10.6': [..TODO..],
     # '10.8': [..TODO..],
     # 'Android 2.3 API9': [..TODO..],
-    # 'Android 4.3 API15+': [..TODO..],
     # 'Windows 7':  [..TODO..],
     # 'Windows 7 VM': [..TODO..],
     # 'Windows 8':  [..TODO..],
     # 'Windows XP': [..TODO..],
     # 'win32': [..TODO..],
     # 'win64': [..TODO..],
 }