testing/config/mozharness/android_x86_config.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/config/mozharness/android_x86_config.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,38 @@
     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 +    "suite_definitions": {
    1.10 +        "mochitest": {
    1.11 +            "run_filename": "runtestsremote.py",
    1.12 +            "options": ["--autorun", "--close-when-done", "--dm_trans=sut",
    1.13 +                "--console-level=INFO", "--app=%(app)s", "--remote-webserver=%(remote_webserver)s",
    1.14 +                "--xre-path=%(xre_path)s", "--utility-path=%(utility_path)s",
    1.15 +                "--deviceIP=%(device_ip)s", "--devicePort=%(device_port)s",
    1.16 +                "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.17 +                "--certificate-path=%(certs_path)s", "--symbols-path=%(symbols_path)s",
    1.18 +                "--quiet"
    1.19 +            ],
    1.20 +        },
    1.21 +        "reftest": {
    1.22 +            "run_filename": "remotereftest.py",
    1.23 +            "options": [ "--app=%(app)s", "--ignore-window-size",
    1.24 +                "--bootstrap", "--enable-privilege",
    1.25 +                "--remote-webserver=%(remote_webserver)s", "--xre-path=%(xre_path)s",
    1.26 +                "--utility-path=%(utility_path)s", "--deviceIP=%(device_ip)s",
    1.27 +                "--devicePort=%(device_port)s", "--http-port=%(http_port)s",
    1.28 +                "--ssl-port=%(ssl_port)s", "--httpd-path", "reftest/components",
    1.29 +                "--symbols-path=%(symbols_path)s",
    1.30 +            ],
    1.31 +        },
    1.32 +        "xpcshell": {
    1.33 +            "run_filename": "remotexpcshelltests.py",
    1.34 +            "options": ["--deviceIP=%(device_ip)s", "--devicePort=%(device_port)s",
    1.35 +                "--xre-path=%(xre_path)s", "--testing-modules-dir=%(modules_dir)s",
    1.36 +                "--apk=%(installer_path)s", "--no-logfiles",
    1.37 +                "--symbols-path=%(symbols_path)s",
    1.38 +            ],
    1.39 +        },
    1.40 +    }, # end suite_definitions
    1.41 +}

mercurial