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