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: "suite_definitions": { michael@0: "mochitest": { michael@0: "run_filename": "runtestsremote.py", michael@0: "options": ["--autorun", "--close-when-done", "--dm_trans=sut", michael@0: "--console-level=INFO", "--app=%(app)s", "--remote-webserver=%(remote_webserver)s", michael@0: "--xre-path=%(xre_path)s", "--utility-path=%(utility_path)s", michael@0: "--deviceIP=%(device_ip)s", "--devicePort=%(device_port)s", michael@0: "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", michael@0: "--certificate-path=%(certs_path)s", "--symbols-path=%(symbols_path)s", michael@0: "--quiet" michael@0: ], michael@0: }, michael@0: "reftest": { michael@0: "run_filename": "remotereftest.py", michael@0: "options": [ "--app=%(app)s", "--ignore-window-size", michael@0: "--bootstrap", "--enable-privilege", michael@0: "--remote-webserver=%(remote_webserver)s", "--xre-path=%(xre_path)s", michael@0: "--utility-path=%(utility_path)s", "--deviceIP=%(device_ip)s", michael@0: "--devicePort=%(device_port)s", "--http-port=%(http_port)s", michael@0: "--ssl-port=%(ssl_port)s", "--httpd-path", "reftest/components", michael@0: "--symbols-path=%(symbols_path)s", michael@0: ], michael@0: }, michael@0: "xpcshell": { michael@0: "run_filename": "remotexpcshelltests.py", michael@0: "options": ["--deviceIP=%(device_ip)s", "--devicePort=%(device_port)s", michael@0: "--xre-path=%(xre_path)s", "--testing-modules-dir=%(modules_dir)s", michael@0: "--apk=%(installer_path)s", "--no-logfiles", michael@0: "--symbols-path=%(symbols_path)s", michael@0: ], michael@0: }, michael@0: }, # end suite_definitions michael@0: }