Bug 1211922 - On cedar only run wpt on linux64-asan, r=jgriffin
authorJames Graham <james@hoppipolla.co.uk>
Tue, 06 Oct 2015 16:09:16 +0100 (2015-10-06)
changeset 13096 8e6a798810364e7970b63bbf4944a9c41e8801cb
parent 13094 91c06daccb02c25c55b864c190ecdc18e9c2d249
child 13097 8a94eb6d73f79416ebbea788538bc5195b666799
push id9305
push userjames@hoppipolla.co.uk
push dateTue, 06 Oct 2015 15:49:56 +0000 (2015-10-06)
reviewersjgriffin
bugs1211922
Bug 1211922 - On cedar only run wpt on linux64-asan, r=jgriffin
mozilla-tests/config.py
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -2507,20 +2507,23 @@ for platform in PLATFORMS.keys():
 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
 
-        if platform in ('linux64', 'linux', 'win32', 'win64', 'macosx64'):
+        if platform in ('linux64-asan',):
             BRANCHES['cedar']['platforms'][platform][slave_platform]['opt_unittest_suites'] += WEB_PLATFORM_REFTESTS[:]
             BRANCHES['cedar']['platforms'][platform][slave_platform]['opt_unittest_suites'] += WEB_PLATFORM_TESTS_CHUNKED[:]
             BRANCHES['cedar']['platforms'][platform][slave_platform]['debug_unittest_suites'] += WEB_PLATFORM_TESTS_CHUNKED_MORE[:] + WEB_PLATFORM_REFTESTS
+            BRANCHES['cedar']['platforms'][platform][slave_platform]['opt_unittest_suites'] += WEB_PLATFORM_REFTESTS_E10S[:]
+            BRANCHES['cedar']['platforms'][platform][slave_platform]['opt_unittest_suites'] += WEB_PLATFORM_TESTS_CHUNKED_E10S[:]
+            BRANCHES['cedar']['platforms'][platform][slave_platform]['debug_unittest_suites'] += WEB_PLATFORM_TESTS_CHUNKED_MORE_E10S[:] + WEB_PLATFORM_REFTESTS_E10S
 
 
 ### Test suites that only run on Try ###
 
 # Enable linux64-cc, linux64-tsan, and win10 on Try only
 delete_slave_platform(BRANCHES, PLATFORMS, {'linux64-cc': 'ubuntu64_vm'}, branch_exclusions=["try"])
 delete_slave_platform(BRANCHES, PLATFORMS, {'linux64-tsan': 'ubuntu64_vm'}, branch_exclusions=["try"])
 delete_slave_platform(BRANCHES, PLATFORMS, {'win64': 'win10_64'}, branch_exclusions=["try"])