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: "mochitest_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--utility-path=../hostutils/bin", "--certificate-path=certs", michael@0: "--app=%(app_name)s", "--console-level=INFO", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--run-only-tests=android.json", "--symbols-path=%(symbols_path)s", michael@0: "--quiet" michael@0: ], michael@0: "reftest_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--utility-path=../hostutils/bin", michael@0: "--app=%(app_name)s", michael@0: "--ignore-window-size", "--bootstrap", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "reftest/tests/layout/reftests/reftest.list" michael@0: ], michael@0: "crashtest_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--utility-path=../hostutils/bin", michael@0: "--app=%(app_name)s", michael@0: "--enable-privilege", "--ignore-window-size", "--bootstrap", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "reftest/tests/testing/crashtest/crashtests.list" michael@0: ], michael@0: "jsreftest_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--utility-path=../hostutils/bin", michael@0: "--app=%(app_name)s", michael@0: "--enable-privilege", "--ignore-window-size", "--bootstrap", michael@0: "--extra-profile-file=jsreftest/tests/user.js", "jsreftest/tests/jstests.list", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--symbols-path=%(symbols_path)s" michael@0: ], michael@0: "robocop_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--utility-path=../hostutils/bin", michael@0: "--certificate-path=certs", michael@0: "--app=%(app_name)s", "--console-level=INFO", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "--robocop=mochitest/robocop.ini" michael@0: ], michael@0: "xpcshell_options": [ michael@0: "--deviceIP=%(device_ip)s", michael@0: "--xre-path=../hostutils/xre", michael@0: "--manifest=xpcshell/tests/xpcshell_android.ini", michael@0: "--build-info-json=xpcshell/mozinfo.json", michael@0: "--testing-modules-dir=modules", michael@0: "--local-lib-dir=../fennec", michael@0: "--apk=../%(apk_name)s", michael@0: "--no-logfiles", michael@0: "--symbols-path=%(symbols_path)s" michael@0: ], michael@0: "jittest_options": [ michael@0: "bin/js", michael@0: "--remote", michael@0: "-j", "1", michael@0: "--deviceTransport=sut", michael@0: "--deviceIP=%(device_ip)s", michael@0: "--localLib=../tests/bin", michael@0: "--no-slow", michael@0: "--no-progress", michael@0: "--tinderbox", michael@0: "--tbpl" michael@0: ], michael@0: "cppunittest_options": [ michael@0: "--symbols-path=%(symbols_path)s", michael@0: "--xre-path=tests/bin", michael@0: "--dm_trans=SUT", michael@0: "--deviceIP=%(device_ip)s", michael@0: "--localBinDir=../tests/bin", michael@0: "--apk=%(apk_path)s", michael@0: "--skip-manifest=../tests/cppunittests/android_cppunittest_manifest.txt" michael@0: ], michael@0: }