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: "testsdir": "mochitest", 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: # Bug 1064002 - Land once mozharness changes land michael@0: #"--total-chunks=16", michael@0: #"--run-only-tests=android23.json", michael@0: ], michael@0: }, michael@0: # Bug 1064002 - Not yet in use michael@0: "mochitest-gl": { michael@0: "run_filename": "runtestsremote.py", michael@0: "testsdir": "mochitest", 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", "--log-raw=%(raw_log_file)s", michael@0: "--total-chunks=2", michael@0: "--test-manifest=gl.json", michael@0: ], michael@0: }, michael@0: # Bug 1064002 - Not yet in use michael@0: "robocop": { michael@0: "run_filename": "runtestsremote.py", michael@0: "testsdir": "mochitest", 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", "--log-raw=%(raw_log_file)s", michael@0: "--total-chunks=4", michael@0: "--robocop-path=../..", michael@0: "--robocop-ids=fennec_ids.txt", michael@0: "--robocop=robocop.ini", michael@0: ], michael@0: }, michael@0: "reftest": { michael@0: "run_filename": "remotereftest.py", michael@0: "testsdir": "reftest", 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: # Bug 1064002 - Land once mozharness changes land michael@0: #"--total-chunks=16", michael@0: #"tests/layout/reftests/reftest.list", michael@0: ], michael@0: }, michael@0: # Bug 1064002 - Not yet in use michael@0: "crashtest": { michael@0: "run_filename": "remotereftest.py", michael@0: "testsdir": "reftest", michael@0: "options": [ "--app=%(app)s", "--ignore-window-size", michael@0: "--bootstrap", 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: "--total-chunks=2", michael@0: "tests/testing/crashtest/crashtests.list", michael@0: ], michael@0: }, michael@0: # Bug 1064002 - Not yet in use michael@0: "jsreftest": { michael@0: "run_filename": "remotereftest.py", michael@0: "testsdir": "reftest", michael@0: "options": [ "--app=%(app)s", "--ignore-window-size", michael@0: "--bootstrap", 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: "../jsreftest/tests/jstests.list", michael@0: "--total-chunks=6", michael@0: "--extra-profile-file=jsreftest/tests/user.js", michael@0: ], michael@0: }, michael@0: "xpcshell": { michael@0: "run_filename": "remotexpcshelltests.py", michael@0: "testsdir": "xpcshell", 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: "--manifest=tests/xpcshell_android.ini", michael@0: # Bug 1064002 - Land once mozharness changes land michael@0: #"--log-raw=%(raw_log_file)s", michael@0: #"--total-chunks=3", michael@0: ], michael@0: }, michael@0: }, # end suite_definitions michael@0: }