--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -676,16 +676,25 @@ MOZBASE = [
('mozbase', {
'use_mozharness': True,
'script_path': 'scripts/desktop_unittest.py',
'extra_args': ['--mozbase-suite', 'mozbase'],
'script_maxtime': 7200,
}),
]
+LUCIDDREAM = [
+ ('luciddream', {
+ 'use_mozharness': True,
+ 'script_path': 'scripts/luciddream_unittest.py',
+ 'script_maxtime': 7200,
+ 'blob_upload': True,
+ }),
+]
+
WEB_PLATFORM_REFTESTS = [
('web-platform-tests-reftests', {
'use_mozharness': True,
'script_path': 'scripts/web_platform_tests.py',
'extra_args': ["--test-type=reftest"],
'blob_upload': True,
'script_maxtime': 7200,
}),
@@ -891,16 +900,19 @@ PLATFORM_UNITTEST_VARS = {
'config_files': ["web_platform_tests/prod_config.py"],
},
'web-platform-tests-reftests': {
'config_files': ["web_platform_tests/prod_config.py"],
},
'mozbase': {
'config_files': ["unittests/linux_unittest.py"],
},
+ 'luciddream': {
+ 'config_files': ["luciddream/linux_config.py"],
+ },
},
},
},
'linux64-asan': {
'product_name': 'firefox',
'app_name': 'browser',
'brand_name': 'Minefield',
'builds_before_reboot': 1,
@@ -1871,16 +1883,17 @@ BRANCHES['try']['g1_tests'] = (1, False,
BRANCHES['try']['chromez-snow_tests'] = (1, False, {}, OSX_SNOW_ONLY)
BRANCHES['try']['svgr-snow_tests'] = (1, False, {}, OSX_SNOW_ONLY)
BRANCHES['try']['pgo_strategy'] = 'try'
BRANCHES['try']['enable_try'] = True
BRANCHES['try']['platforms']['macosx64']['yosemite']['opt_unittest_suites'] = UNITTEST_SUITES['opt_unittest_suites'][:]
BRANCHES['try']['platforms']['macosx64']['yosemite']['debug_unittest_suites'] = UNITTEST_SUITES['debug_unittest_suites'][:]
######## cedar
+BRANCHES['cedar']['platforms']['linux64']['ubuntu64_vm']['opt_unittest_suites'] += LUCIDDREAM[:]
BRANCHES['cedar']['platforms']['linux64-asan']['ubuntu64-asan_vm']['opt_unittest_suites'] += MARIONETTE[:]
BRANCHES['cedar']['platforms']['win32']['xp-ix']['opt_unittest_suites'] += REFTEST_OMTC[:]
BRANCHES['cedar']['platforms']['win32']['win7-ix']['opt_unittest_suites'] += REFTEST_OMTC[:]
BRANCHES['cedar']['platforms']['win64']['win8_64']['opt_unittest_suites'] += REFTEST_OMTC[:]
BRANCHES['cedar']['platforms']['win32']['xp-ix']['debug_unittest_suites'] += REFTEST_OMTC[:]
BRANCHES['cedar']['platforms']['win32']['win7-ix']['debug_unittest_suites'] += REFTEST_OMTC[:]
BRANCHES['cedar']['platforms']['win64']['win8_64']['debug_unittest_suites'] += REFTEST_OMTC[:]