mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
8b285bff78
--HG-- extra : rebase_source : 20ecfb57c50002addf92e1beb24112c03a0fadc1
60 lines
1.9 KiB
Python
60 lines
1.9 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
config = {
|
|
"marionette_desktop_options": [
|
|
"--type=%(type)s",
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--binary=%(binary)s",
|
|
"--address=%(address)s",
|
|
"--symbols-path=%(symbols_path)s",
|
|
],
|
|
"marionette_emulator_options": [
|
|
"--type=%(type)s",
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--logcat-dir=%(logcat_dir)s",
|
|
"--emulator=%(emulator)s",
|
|
"--homedir=%(homedir)s",
|
|
"--symbols-path=%(symbols_path)s",
|
|
],
|
|
"webapi_emulator_options": [
|
|
"--type=%(type)s",
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--symbols-path=%(symbols_path)s",
|
|
"--logcat-dir=%(logcat_dir)s",
|
|
"--emulator=%(emulator)s",
|
|
"--homedir=%(homedir)s",
|
|
],
|
|
# This combination is not currently run.
|
|
"webapi_desktop_options": [
|
|
],
|
|
"gaiatest_emulator_options": [
|
|
"--restart",
|
|
"--timeout=%(timeout)s",
|
|
"--type=%(type)s",
|
|
"--testvars=%(testvars)s",
|
|
"--profile=%(profile)s",
|
|
"--symbols-path=%(symbols_path)s",
|
|
"--xml-output=%(xml_output)s",
|
|
"--html-output=%(html_output)s",
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--logcat-dir=%(logcat_dir)s",
|
|
"--emulator=%(emulator)s",
|
|
"--homedir=%(homedir)s",
|
|
],
|
|
"gaiatest_desktop_options": [
|
|
"--restart",
|
|
"--timeout=%(timeout)s",
|
|
"--type=%(type)s",
|
|
"--testvars=%(testvars)s",
|
|
"--profile=%(profile)s",
|
|
"--symbols-path=%(symbols_path)s",
|
|
"--xml-output=%(xml_output)s",
|
|
"--html-output=%(html_output)s",
|
|
"--log-raw=%(raw_log_file)s",
|
|
"--binary=%(binary)s",
|
|
"--address=%(address)s",
|
|
],
|
|
}
|