testing/config/mozharness/b2g_emulator_config.py

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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 }

mercurial