testing/config/mozharness/mac_config.py

Wed, 31 Dec 2014 06:55:46 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:46 +0100
changeset 1
ca08bd8f51b2
permissions
-rw-r--r--

Added tag TORBROWSER_REPLICA for changeset 6474c204b198

michael@0 1 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 4
michael@0 5 config = {
michael@0 6 "reftest_options": [
michael@0 7 "--appname=%(binary_path)s", "--utility-path=tests/bin",
michael@0 8 "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s"
michael@0 9 ],
michael@0 10 "mochitest_options": [
michael@0 11 "--appname=%(binary_path)s", "--utility-path=tests/bin",
michael@0 12 "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s",
michael@0 13 "--certificate-path=tests/certs", "--autorun", "--close-when-done",
michael@0 14 "--console-level=INFO",
michael@0 15 "--quiet"
michael@0 16 ],
michael@0 17 "webapprt_options": [
michael@0 18 "--app=%(app_path)s", "--utility-path=tests/bin",
michael@0 19 "--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s",
michael@0 20 "--certificate-path=tests/certs", "--autorun", "--close-when-done",
michael@0 21 "--console-level=INFO", "--testing-modules-dir=tests/modules",
michael@0 22 "--quiet"
michael@0 23 ],
michael@0 24 "xpcshell_options": [
michael@0 25 "--symbols-path=%(symbols_path)s",
michael@0 26 "--test-plugin-path=%(test_plugin_path)s"
michael@0 27 ],
michael@0 28 "cppunittest_options": [
michael@0 29 "--symbols-path=%(symbols_path)s",
michael@0 30 "--xre-path=%(abs_app_dir)s"
michael@0 31 ],
michael@0 32 "jittest_options": [
michael@0 33 "tests/bin/js",
michael@0 34 "--no-slow",
michael@0 35 "--no-progress",
michael@0 36 "--tinderbox",
michael@0 37 "--tbpl"
michael@0 38 ],
michael@0 39 "mozbase_options": [
michael@0 40 "-b", "%(binary_path)s"
michael@0 41 ],
michael@0 42 }

mercurial