testing/config/mozharness/android_panda_config.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/config/mozharness/android_panda_config.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,87 @@
     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 +    "mochitest_options": [
    1.10 +        "--deviceIP=%(device_ip)s",
    1.11 +        "--xre-path=../hostutils/xre",
    1.12 +        "--utility-path=../hostutils/bin", "--certificate-path=certs",
    1.13 +        "--app=%(app_name)s", "--console-level=INFO",
    1.14 +        "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.15 +        "--run-only-tests=android.json", "--symbols-path=%(symbols_path)s",
    1.16 +        "--quiet"
    1.17 +    ],
    1.18 +    "reftest_options": [
    1.19 +        "--deviceIP=%(device_ip)s",
    1.20 +        "--xre-path=../hostutils/xre",
    1.21 +        "--utility-path=../hostutils/bin",
    1.22 +        "--app=%(app_name)s",
    1.23 +        "--ignore-window-size", "--bootstrap",
    1.24 +        "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.25 +        "--symbols-path=%(symbols_path)s",
    1.26 +        "reftest/tests/layout/reftests/reftest.list"
    1.27 +    ],
    1.28 +    "crashtest_options": [
    1.29 +        "--deviceIP=%(device_ip)s",
    1.30 +        "--xre-path=../hostutils/xre",
    1.31 +        "--utility-path=../hostutils/bin",
    1.32 +        "--app=%(app_name)s",
    1.33 +        "--enable-privilege", "--ignore-window-size", "--bootstrap",
    1.34 +        "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.35 +        "--symbols-path=%(symbols_path)s",
    1.36 +        "reftest/tests/testing/crashtest/crashtests.list"
    1.37 +    ],
    1.38 +    "jsreftest_options": [
    1.39 +        "--deviceIP=%(device_ip)s",
    1.40 +        "--xre-path=../hostutils/xre",
    1.41 +        "--utility-path=../hostutils/bin",
    1.42 +        "--app=%(app_name)s",
    1.43 +        "--enable-privilege", "--ignore-window-size", "--bootstrap",
    1.44 +        "--extra-profile-file=jsreftest/tests/user.js", "jsreftest/tests/jstests.list",
    1.45 +        "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.46 +        "--symbols-path=%(symbols_path)s"
    1.47 +    ],
    1.48 +    "robocop_options": [
    1.49 +        "--deviceIP=%(device_ip)s",
    1.50 +        "--xre-path=../hostutils/xre",
    1.51 +        "--utility-path=../hostutils/bin",
    1.52 +        "--certificate-path=certs",
    1.53 +        "--app=%(app_name)s", "--console-level=INFO",
    1.54 +        "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s",
    1.55 +        "--symbols-path=%(symbols_path)s",
    1.56 +        "--robocop=mochitest/robocop.ini"
    1.57 +    ],
    1.58 +    "xpcshell_options": [
    1.59 +        "--deviceIP=%(device_ip)s",
    1.60 +        "--xre-path=../hostutils/xre",
    1.61 +        "--manifest=xpcshell/tests/xpcshell_android.ini",
    1.62 +        "--build-info-json=xpcshell/mozinfo.json",
    1.63 +        "--testing-modules-dir=modules",
    1.64 +        "--local-lib-dir=../fennec",
    1.65 +        "--apk=../%(apk_name)s",
    1.66 +        "--no-logfiles",
    1.67 +        "--symbols-path=%(symbols_path)s"
    1.68 +    ],
    1.69 +    "jittest_options": [
    1.70 +        "bin/js",
    1.71 +        "--remote",
    1.72 +        "-j", "1",
    1.73 +        "--deviceTransport=sut",
    1.74 +        "--deviceIP=%(device_ip)s",
    1.75 +        "--localLib=../tests/bin",
    1.76 +        "--no-slow",
    1.77 +        "--no-progress",
    1.78 +        "--tinderbox",
    1.79 +        "--tbpl"
    1.80 +     ],
    1.81 +     "cppunittest_options": [
    1.82 +        "--symbols-path=%(symbols_path)s",
    1.83 +        "--xre-path=tests/bin",
    1.84 +        "--dm_trans=SUT",
    1.85 +        "--deviceIP=%(device_ip)s",
    1.86 +        "--localBinDir=../tests/bin",
    1.87 +        "--apk=%(apk_path)s",
    1.88 +        "--skip-manifest=../tests/cppunittests/android_cppunittest_manifest.txt"
    1.89 +     ],
    1.90 +}

mercurial