Bug 1296614 - Firefox-ui-functional tests should be also run for ASAN builds r=dustin

MozReview-Commit-ID: A4EILsuV5qH

--HG--
extra : rebase_source : afb96cbe712c2912f5f07801cc6c1c5bcda1f58b
This commit is contained in:
Henrik Skupin 2016-08-22 13:47:17 +02:00
Родитель b4e537e8eb
Коммит 0f39ba4b58
3 изменённых файлов: 8 добавлений и 18 удалений

Просмотреть файл

@ -38,6 +38,8 @@ all-tests:
asan-tests:
- cppunit
- crashtest
- firefox-ui-functional-local
- firefox-ui-functional-remote
- gtest
- jittests
- jsreftest

Просмотреть файл

@ -7,8 +7,5 @@ config = {
"pip_index": False,
"download_symbols": "ondemand",
"download_minidump_stackwalk": True,
"tooltool_cache": "/builds/tooltool_cache",
}

Просмотреть файл

@ -22,6 +22,12 @@ from mozharness.mozilla.vcstools import VCSToolsScript
# General command line arguments for Firefox ui tests
firefox_ui_tests_config_options = [
[["--allow-software-gl-layers"], {
"action": "store_true",
"dest": "allow_software_gl_layers",
"default": False,
"help": "Permits a software GL implementation (such as LLVMPipe) to use the GL compositor.",
}],
[['--dry-run'], {
'dest': 'dry_run',
'default': False,
@ -33,15 +39,6 @@ firefox_ui_tests_config_options = [
'default': False,
'help': 'Enable multi-process (e10s) mode when running tests.',
}],
[['--firefox-ui-branch'], {
'dest': 'firefox_ui_branch',
'help': 'which branch to use for firefox_ui_tests',
}],
[['--firefox-ui-repo'], {
'dest': 'firefox_ui_repo',
'default': 'https://github.com/mozilla/firefox-ui-tests.git',
'help': 'which firefox_ui_tests repo to use',
}],
[['--symbols-path=SYMBOLS_PATH'], {
'dest': 'symbols_path',
'help': 'absolute path to directory containing breakpad '
@ -51,12 +48,6 @@ firefox_ui_tests_config_options = [
'dest': 'tag',
'help': 'Subset of tests to run (local, remote).',
}],
[["--allow-software-gl-layers"], {
"action": "store_true",
"dest": "allow_software_gl_layers",
"default": False,
"help": "Permits a software GL implementation (such as LLVMPipe) to use the GL compositor.",
}],
] + copy.deepcopy(testing_config_options)
# Command line arguments for update tests