testing/config/mozharness/b2g_emulator_config.py

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 # This Source Code Form is subject to the terms of the Mozilla Public
     2 # License, v. 2.0. If a copy of the MPL was not distributed with this
     3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     5 config = {
     6     "jsreftest_options": [
     7         "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s",
     8         "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s",
     9         "--remote-webserver=%(remote_webserver)s", "--ignore-window-size",
    10         "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s",
    11         "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s",
    12         "--extra-profile-file=jsreftest/tests/user.js",
    13         "%(test_manifest)s",
    14     ],
    16     "mochitest_options": [
    17         "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--console-level=INFO",
    18         "--emulator=%(emulator)s", "--logcat-dir=%(logcat_dir)s",
    19         "--remote-webserver=%(remote_webserver)s", "%(test_manifest)s",
    20         "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s",
    21         "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s",
    22         "--quiet", "--certificate-path=%(certificate_path)s",
    23     ],
    25     "reftest_options": [
    26         "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s",
    27         "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s",
    28         "--remote-webserver=%(remote_webserver)s", "--ignore-window-size",
    29         "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s",
    30         "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s",
    31         "%(test_manifest)s",
    32     ],
    34     "crashtest_options": [
    35         "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s",
    36         "--emulator-res=800x1000", "--logcat-dir=%(logcat_dir)s",
    37         "--remote-webserver=%(remote_webserver)s", "--ignore-window-size",
    38         "--xre-path=%(xre_path)s", "--symbols-path=%(symbols_path)s", "--busybox=%(busybox)s",
    39         "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s",
    40         "%(test_manifest)s",
    41     ],
    43     "xpcshell_options": [
    44         "--adbpath=%(adbpath)s", "--b2gpath=%(b2gpath)s", "--emulator=%(emulator)s",
    45         "--logcat-dir=%(logcat_dir)s", "--manifest=%(test_manifest)s", "--use-device-libs",
    46         "--testing-modules-dir=%(modules_dir)s", "--symbols-path=%(symbols_path)s",
    47         "--busybox=%(busybox)s", "--total-chunks=%(total_chunks)s", "--this-chunk=%(this_chunk)s",
    48     ],
    49 }

mercurial