1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/testing/config/mozharness/b2g_emulator_config.py Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,49 @@ 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 + "jsreftest_options": [ 1.10 + "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", 1.11 + "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", 1.12 + "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", 1.13 + "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", 1.14 + "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", 1.15 + "--extra-profile-file=jsreftest/tests/user.js", 1.16 + "%(test_manifest)s", 1.17 + ], 1.18 + 1.19 + "mochitest_options": [ 1.20 + "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--console-level=INFO", 1.21 + "--emulator=%(emulator)s", "--logcat-dir=%(logcat_dir)s", 1.22 + "--remote-webserver=%(remote_webserver)s", "%(test_manifest)s", 1.23 + "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", 1.24 + "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", 1.25 + "--quiet", "--certificate-path=%(certificate_path)s", 1.26 + ], 1.27 + 1.28 + "reftest_options": [ 1.29 + "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", 1.30 + "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", 1.31 + "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", 1.32 + "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", 1.33 + "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", 1.34 + "%(test_manifest)s", 1.35 + ], 1.36 + 1.37 + "crashtest_options": [ 1.38 + "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", 1.39 + "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", 1.40 + "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", 1.41 + "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", 1.42 + "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", 1.43 + "%(test_manifest)s", 1.44 + ], 1.45 + 1.46 + "xpcshell_options": [ 1.47 + "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", 1.48 + "--logcat-dir=%(logcat_dir)s", "--manifest=%(test_manifest)s", "--use-device-libs", 1.49 + "--testing-modules-dir=%(modules_dir)s", "--symbols-path=%(symbols_path)s", 1.50 + "--busybox=%(busybox)s", "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", 1.51 + ], 1.52 +}