|
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 "jsreftest_options": [ |
|
7 "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", |
|
8 "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", |
|
9 "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", |
|
10 "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", |
|
11 "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", |
|
12 "--extra-profile-file=jsreftest/tests/user.js", |
|
13 "%(test_manifest)s", |
|
14 ], |
|
15 |
|
16 "mochitest_options": [ |
|
17 "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--console-level=INFO", |
|
18 "--emulator=%(emulator)s", "--logcat-dir=%(logcat_dir)s", |
|
19 "--remote-webserver=%(remote_webserver)s", "%(test_manifest)s", |
|
20 "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", |
|
21 "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", |
|
22 "--quiet", "--certificate-path=%(certificate_path)s", |
|
23 ], |
|
24 |
|
25 "reftest_options": [ |
|
26 "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", |
|
27 "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", |
|
28 "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", |
|
29 "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", |
|
30 "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", |
|
31 "%(test_manifest)s", |
|
32 ], |
|
33 |
|
34 "crashtest_options": [ |
|
35 "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", |
|
36 "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", |
|
37 "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", |
|
38 "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", |
|
39 "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", |
|
40 "%(test_manifest)s", |
|
41 ], |
|
42 |
|
43 "xpcshell_options": [ |
|
44 "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", |
|
45 "--logcat-dir=%(logcat_dir)s", "--manifest=%(test_manifest)s", "--use-device-libs", |
|
46 "--testing-modules-dir=%(modules_dir)s", "--symbols-path=%(symbols_path)s", |
|
47 "--busybox=%(busybox)s", "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", |
|
48 ], |
|
49 } |