michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: config = { michael@0: "jsreftest_options": [ michael@0: "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", michael@0: "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", michael@0: "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", michael@0: "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", michael@0: "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", michael@0: "--extra-profile-file=jsreftest/tests/user.js", michael@0: "%(test_manifest)s", michael@0: ], michael@0: michael@0: "mochitest_options": [ michael@0: "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--console-level=INFO", michael@0: "--emulator=%(emulator)s", "--logcat-dir=%(logcat_dir)s", michael@0: "--remote-webserver=%(remote_webserver)s", "%(test_manifest)s", michael@0: "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", michael@0: "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", michael@0: "--quiet", "--certificate-path=%(certificate_path)s", michael@0: ], michael@0: michael@0: "reftest_options": [ michael@0: "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", michael@0: "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", michael@0: "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", michael@0: "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", michael@0: "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", michael@0: "%(test_manifest)s", michael@0: ], michael@0: michael@0: "crashtest_options": [ michael@0: "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", michael@0: "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s", michael@0: "--remote-webserver=%(remote_webserver)s", "--ignore-window-size", michael@0: "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s", michael@0: "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", michael@0: "%(test_manifest)s", michael@0: ], michael@0: michael@0: "xpcshell_options": [ michael@0: "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s", michael@0: "--logcat-dir=%(logcat_dir)s", "--manifest=%(test_manifest)s", "--use-device-libs", michael@0: "--testing-modules-dir=%(modules_dir)s", "--symbols-path=%(symbols_path)s", michael@0: "--busybox=%(busybox)s", "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s", michael@0: ], michael@0: }