testing/config/mozharness/marionette.py

Wed, 31 Dec 2014 06:55:46 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:46 +0100
changeset 1
ca08bd8f51b2
permissions
-rw-r--r--

Added tag TORBROWSER_REPLICA for changeset 6474c204b198

michael@0 1 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 4
michael@0 5 config = {
michael@0 6 "marionette_desktop_options": [
michael@0 7 "--type=%(type)s",
michael@0 8 "--binary=%(binary)s",
michael@0 9 "--address=%(address)s",
michael@0 10 ],
michael@0 11 "marionette_emulator_options": [
michael@0 12 "--type=%(type)s",
michael@0 13 "--logcat-dir=%(logcat_dir)s",
michael@0 14 "--emulator=%(emulator)s",
michael@0 15 "--homedir=%(homedir)s",
michael@0 16 ],
michael@0 17 "webapi_emulator_options": [
michael@0 18 "--type=%(type)s",
michael@0 19 "--symbols-path=%(symbols_path)s",
michael@0 20 "--logcat-dir=%(logcat_dir)s",
michael@0 21 "--emulator=%(emulator)s",
michael@0 22 "--homedir=%(homedir)s",
michael@0 23 ],
michael@0 24 # This combination is not currently run.
michael@0 25 "webapi_desktop_options": [
michael@0 26 ],
michael@0 27 "gaiatest_emulator_options": [
michael@0 28 "--restart",
michael@0 29 "--timeout=%(timeout)s",
michael@0 30 "--type=%(type)s",
michael@0 31 "--testvars=%(testvars)s",
michael@0 32 "--profile=%(profile)s",
michael@0 33 "--symbols-path=%(symbols_path)s",
michael@0 34 "--xml-output=%(xml_output)s",
michael@0 35 "--html-output=%(html_output)s",
michael@0 36 "--logcat-dir=%(logcat_dir)s",
michael@0 37 "--emulator=%(emulator)s",
michael@0 38 "--homedir=%(homedir)s",
michael@0 39 ],
michael@0 40 "gaiatest_desktop_options": [
michael@0 41 "--restart",
michael@0 42 "--timeout=%(timeout)s",
michael@0 43 "--type=%(type)s",
michael@0 44 "--testvars=%(testvars)s",
michael@0 45 "--profile=%(profile)s",
michael@0 46 "--symbols-path=%(symbols_path)s",
michael@0 47 "--xml-output=%(xml_output)s",
michael@0 48 "--html-output=%(html_output)s",
michael@0 49 "--binary=%(binary)s",
michael@0 50 "--address=%(address)s",
michael@0 51 ],
michael@0 52 }

mercurial