Bug 1170252 - Enable web-platform-tests for debug builds on Try, r=jlund
authorJames Graham <james@hoppipolla.co.uk>
Mon, 01 Jun 2015 19:35:25 +0100 (2015-06-01)
changeset 12538 4956570a7555917969b2404c827158823b56b443
parent 12536 fbd8ed3fde6af0688170d557fcacf753fd34c0a7
child 12541 474a7a584661545c77674450826597773236a377
push id9006
push userjames@hoppipolla.co.uk
push dateMon, 22 Jun 2015 17:01:52 +0000 (2015-06-22)
reviewersjlund
bugs1170252
Bug 1170252 - Enable web-platform-tests for debug builds on Try, r=jlund
mozilla-tests/config.py
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -2189,16 +2189,23 @@ for platform in PLATFORMS.keys():
 for platform in PLATFORMS.keys():
     for name, branch in items_at_least(BRANCHES, 'gecko_version', 36):
         for slave_platform in PLATFORMS[platform]['slave_platforms']:
             if platform in BRANCHES[name]['platforms']:
                 if slave_platform in BRANCHES[name]['platforms'][platform]:
                     BRANCHES[name]['platforms'][platform][slave_platform]['opt_unittest_suites'] += MOCHITEST_WEBGL
                     BRANCHES[name]['platforms'][platform][slave_platform]['debug_unittest_suites']+= MOCHITEST_WEBGL
 
+# Enable web-platform-tests-debug on try
+for platform in PLATFORMS.keys():
+    for slave_platform in PLATFORMS[platform]['slave_platforms']:
+        if slave_platform not in BRANCHES['try']['platforms'][platform]:
+            continue
+        BRANCHES['try']['platforms'][platform][slave_platform]['debug_unittest_suites'] += WEB_PLATFORM_TESTS_CHUNKED_MORE[:] + WEB_PLATFORM_REFTESTS
+
 # Enable web-platform-tests on cedar
 for platform in PLATFORMS.keys():
     if platform not in BRANCHES['cedar']['platforms']:
         continue
 
     for slave_platform in PLATFORMS[platform]['slave_platforms']:
         if slave_platform not in BRANCHES['cedar']['platforms'][platform]:
             continue