1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/config/mozharness/marionette.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,52 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +config = { 1.9 + "marionette_desktop_options": [ 1.10 + "--type=%(type)s", 1.11 + "--binary=%(binary)s", 1.12 + "--address=%(address)s", 1.13 + ], 1.14 + "marionette_emulator_options": [ 1.15 + "--type=%(type)s", 1.16 + "--logcat-dir=%(logcat_dir)s", 1.17 + "--emulator=%(emulator)s", 1.18 + "--homedir=%(homedir)s", 1.19 + ], 1.20 + "webapi_emulator_options": [ 1.21 + "--type=%(type)s", 1.22 + "--symbols-path=%(symbols_path)s", 1.23 + "--logcat-dir=%(logcat_dir)s", 1.24 + "--emulator=%(emulator)s", 1.25 + "--homedir=%(homedir)s", 1.26 + ], 1.27 + # This combination is not currently run. 1.28 + "webapi_desktop_options": [ 1.29 + ], 1.30 + "gaiatest_emulator_options": [ 1.31 + "--restart", 1.32 + "--timeout=%(timeout)s", 1.33 + "--type=%(type)s", 1.34 + "--testvars=%(testvars)s", 1.35 + "--profile=%(profile)s", 1.36 + "--symbols-path=%(symbols_path)s", 1.37 + "--xml-output=%(xml_output)s", 1.38 + "--html-output=%(html_output)s", 1.39 + "--logcat-dir=%(logcat_dir)s", 1.40 + "--emulator=%(emulator)s", 1.41 + "--homedir=%(homedir)s", 1.42 + ], 1.43 + "gaiatest_desktop_options": [ 1.44 + "--restart", 1.45 + "--timeout=%(timeout)s", 1.46 + "--type=%(type)s", 1.47 + "--testvars=%(testvars)s", 1.48 + "--profile=%(profile)s", 1.49 + "--symbols-path=%(symbols_path)s", 1.50 + "--xml-output=%(xml_output)s", 1.51 + "--html-output=%(html_output)s", 1.52 + "--binary=%(binary)s", 1.53 + "--address=%(address)s", 1.54 + ], 1.55 +}