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