testing/config/mozharness/windows_config.py

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/config/mozharness/windows_config.py	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,42 @@
     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 +    "reftest_options": [
    1.10 +        "--appname=%(binary_path)s", "--utility-path=tests/bin",
    1.11 +        "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s"
    1.12 +    ],
    1.13 +    "mochitest_options": [
    1.14 +        "--appname=%(binary_path)s", "--utility-path=tests/bin",
    1.15 +        "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s",
    1.16 +        "--certificate-path=tests/certs", "--autorun", "--close-when-done",
    1.17 +        "--console-level=INFO",
    1.18 +        "--quiet"
    1.19 +    ],
    1.20 +    "webapprt_options": [
    1.21 +        "--app=%(app_path)s", "--utility-path=tests/bin",
    1.22 +        "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s",
    1.23 +        "--certificate-path=tests/certs", "--autorun", "--close-when-done",
    1.24 +        "--console-level=INFO", "--testing-modules-dir=tests/modules",
    1.25 +        "--quiet"
    1.26 +    ],
    1.27 +    "xpcshell_options": [
    1.28 +        "--symbols-path=%(symbols_path)s",
    1.29 +        "--test-plugin-path=%(test_plugin_path)s"
    1.30 +    ],
    1.31 +    "cppunittest_options": [
    1.32 +        "--symbols-path=%(symbols_path)s",
    1.33 +        "--xre-path=%(abs_app_dir)s"
    1.34 +    ],
    1.35 +    "jittest_options": [
    1.36 +        "tests/bin/js",
    1.37 +        "--no-slow",
    1.38 +        "--no-progress",
    1.39 +        "--tinderbox",
    1.40 +        "--tbpl"
    1.41 +    ],
    1.42 +    "mozbase_options": [
    1.43 +        "-b", "%(binary_path)s"
    1.44 +    ],
    1.45 +}

mercurial